結果

問題 No.207 世界のなんとか
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:40:46
言語 Kotlin
(1.9.10)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 14,445 ms
コンパイル使用メモリ 441,480 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2023-10-25 21:27:19
合計ジャッジ時間 18,057 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
54,516 KB
testcase_01 AC 293 ms
54,496 KB
testcase_02 AC 297 ms
54,536 KB
testcase_03 AC 294 ms
54,536 KB
testcase_04 AC 291 ms
54,508 KB
testcase_05 AC 294 ms
54,532 KB
testcase_06 AC 291 ms
54,508 KB
testcase_07 AC 294 ms
54,508 KB
testcase_08 AC 296 ms
54,500 KB
testcase_09 AC 298 ms
54,536 KB
testcase_10 AC 305 ms
54,548 KB
testcase_11 AC 302 ms
54,532 KB
testcase_12 AC 303 ms
54,544 KB
testcase_13 AC 303 ms
54,540 KB
testcase_14 AC 305 ms
54,544 KB
testcase_15 AC 300 ms
54,532 KB
testcase_16 AC 294 ms
54,512 KB
testcase_17 AC 295 ms
54,496 KB
testcase_18 AC 297 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {val(m,x)=readLine()!!.split(" ").map{it.toInt()}
(m..x).filter{it%3==0||'3' in it.toString()}.forEach{println(it)}}
0