結果

問題 No.1406 Test
ユーザー face4face4
提出日時 2021-04-11 14:03:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 11,362 ms
コンパイル使用メモリ 434,720 KB
実行使用メモリ 52,064 KB
最終ジャッジ日時 2024-06-27 09:13:30
合計ジャッジ時間 20,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,000 KB
testcase_01 AC 295 ms
51,200 KB
testcase_02 AC 296 ms
51,172 KB
testcase_03 AC 296 ms
51,084 KB
testcase_04 AC 300 ms
50,980 KB
testcase_05 AC 295 ms
51,236 KB
testcase_06 AC 292 ms
51,256 KB
testcase_07 AC 280 ms
49,960 KB
testcase_08 AC 295 ms
51,172 KB
testcase_09 AC 274 ms
50,012 KB
testcase_10 AC 302 ms
51,072 KB
testcase_11 AC 297 ms
50,988 KB
testcase_12 AC 310 ms
51,852 KB
testcase_13 AC 302 ms
50,960 KB
testcase_14 AC 308 ms
51,932 KB
testcase_15 AC 297 ms
51,216 KB
testcase_16 AC 298 ms
51,264 KB
testcase_17 AC 279 ms
49,852 KB
testcase_18 AC 301 ms
51,148 KB
testcase_19 AC 298 ms
51,000 KB
testcase_20 AC 282 ms
49,832 KB
testcase_21 AC 299 ms
51,376 KB
testcase_22 AC 296 ms
51,164 KB
testcase_23 AC 307 ms
52,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    println(when(n){
        1 -> 101
        else -> readLine()!!.split(" ").sumOf{it.toInt()}.let{sum ->
            (0..100).filter{(sum+it)%n==0}.size
        }
    })
}
0