結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:10:52
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 357 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 12,760 ms
コンパイル使用メモリ 436,400 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-06-11 09:55:32
合計ジャッジ時間 26,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
53,828 KB
testcase_01 AC 340 ms
54,048 KB
testcase_02 AC 344 ms
53,972 KB
testcase_03 AC 344 ms
53,884 KB
testcase_04 AC 355 ms
54,060 KB
testcase_05 AC 353 ms
53,836 KB
testcase_06 AC 343 ms
53,936 KB
testcase_07 AC 351 ms
53,800 KB
testcase_08 AC 356 ms
53,976 KB
testcase_09 AC 348 ms
53,968 KB
testcase_10 AC 354 ms
53,784 KB
testcase_11 AC 344 ms
53,844 KB
testcase_12 AC 344 ms
53,852 KB
testcase_13 AC 347 ms
53,952 KB
testcase_14 AC 344 ms
53,724 KB
testcase_15 AC 349 ms
53,732 KB
testcase_16 AC 336 ms
53,712 KB
testcase_17 AC 346 ms
53,852 KB
testcase_18 AC 342 ms
53,944 KB
testcase_19 AC 342 ms
53,752 KB
testcase_20 AC 334 ms
53,932 KB
testcase_21 AC 340 ms
54,080 KB
testcase_22 AC 340 ms
53,836 KB
testcase_23 AC 345 ms
53,900 KB
testcase_24 AC 331 ms
53,852 KB
testcase_25 AC 341 ms
53,936 KB
testcase_26 AC 343 ms
53,736 KB
testcase_27 AC 347 ms
53,912 KB
testcase_28 AC 348 ms
53,724 KB
testcase_29 AC 352 ms
53,980 KB
testcase_30 AC 343 ms
53,908 KB
testcase_31 AC 352 ms
54,200 KB
testcase_32 AC 345 ms
53,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val d1 = listOf(2,3,5,7,11,13)
    val d2 = listOf(4,6,8,9,10,12)
    val k = readLine()!!.toInt()
    val ans =  d1.map { n1 -> d2.count { n1*it == k } }.sum().let { it / 36.0 }
    println(ans)
}
0