結果

問題 No.207 世界のなんとか
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:40:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 127 bytes
コンパイル時間 12,329 ms
コンパイル使用メモリ 428,932 KB
実行使用メモリ 57,156 KB
最終ジャッジ日時 2024-09-25 06:06:28
合計ジャッジ時間 17,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
57,020 KB
testcase_01 AC 305 ms
57,012 KB
testcase_02 AC 310 ms
57,060 KB
testcase_03 AC 308 ms
57,076 KB
testcase_04 AC 310 ms
57,024 KB
testcase_05 AC 312 ms
56,988 KB
testcase_06 AC 309 ms
57,048 KB
testcase_07 AC 311 ms
57,156 KB
testcase_08 AC 308 ms
56,960 KB
testcase_09 AC 315 ms
56,988 KB
testcase_10 AC 317 ms
57,072 KB
testcase_11 AC 314 ms
56,968 KB
testcase_12 AC 318 ms
57,036 KB
testcase_13 AC 316 ms
56,952 KB
testcase_14 AC 315 ms
57,044 KB
testcase_15 AC 309 ms
57,024 KB
testcase_16 AC 306 ms
56,992 KB
testcase_17 AC 307 ms
57,008 KB
testcase_18 AC 304 ms
57,028 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