Submission #6909789


Source Code Expand

import java.io.PrintWriter
val pw = PrintWriter(System.out)

fun main(args : Array<String>) {
    func()
    pw.flush()
}

fun func() {
    val n = nextInt()
    val ff = listOfInt()

    var ans = 0
    for (f in ff) {
        when (f % 6) {
            0 -> ans += 3
            2 -> ans++
            4 -> ans++
            5 -> ans += 2
        }
    }
    println(ans)
}

fun next() = readLine()!!
fun nextInt() = next().toInt()
fun listOfString() = next().split(" ")
fun listOfInt() = listOfString().map { it.toInt() }

fun println(value : Any) {
    pw.println(value)
}

Submission Info

Submission Time
Task B - 花占い
User nopopon
Language Kotlin (1.0.0)
Score 100
Code Size 607 Byte
Status AC
Exec Time 254 ms
Memory 37812 KB

Compile Error

Main.kt:10:9: warning: variable 'n' is never used
    val n = nextInt()
        ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 20
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_112358.txt, test_1379137913.txt, test_1414213562.txt, test_1732151817.txt, test_2.txt, test_2236167977.txt, test_2645751311.txt, test_3.txt, test_3141592653.txt, test_4.txt, test_5.txt, test_6.txt, test_6666666666.txt, test_7.txt, test_73.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 254 ms 36340 KB
sample_02.txt AC 235 ms 35936 KB
test_1.txt AC 237 ms 35848 KB
test_112358.txt AC 235 ms 35820 KB
test_1379137913.txt AC 235 ms 34092 KB
test_1414213562.txt AC 235 ms 35920 KB
test_1732151817.txt AC 237 ms 35896 KB
test_2.txt AC 236 ms 35900 KB
test_2236167977.txt AC 235 ms 33848 KB
test_2645751311.txt AC 236 ms 35904 KB
test_3.txt AC 236 ms 33848 KB
test_3141592653.txt AC 236 ms 35920 KB
test_4.txt AC 236 ms 37744 KB
test_5.txt AC 235 ms 37812 KB
test_6.txt AC 236 ms 35804 KB
test_6666666666.txt AC 235 ms 35976 KB
test_7.txt AC 236 ms 35828 KB
test_73.txt AC 236 ms 34116 KB
test_8.txt AC 235 ms 35824 KB
test_9.txt AC 237 ms 37720 KB