結果

問題 No.207 世界のなんとか
ユーザー kotakota
提出日時 2022-05-18 17:52:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 336 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 14,197 ms
コンパイル使用メモリ 436,316 KB
実行使用メモリ 51,764 KB
最終ジャッジ日時 2024-09-16 19:59:29
合計ジャッジ時間 20,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,480 KB
testcase_01 AC 312 ms
51,764 KB
testcase_02 AC 313 ms
51,732 KB
testcase_03 AC 320 ms
51,632 KB
testcase_04 AC 307 ms
51,700 KB
testcase_05 AC 312 ms
51,716 KB
testcase_06 AC 311 ms
51,640 KB
testcase_07 AC 336 ms
51,360 KB
testcase_08 AC 313 ms
51,672 KB
testcase_09 AC 317 ms
51,600 KB
testcase_10 AC 315 ms
51,496 KB
testcase_11 AC 313 ms
51,636 KB
testcase_12 AC 310 ms
51,696 KB
testcase_13 AC 315 ms
51,384 KB
testcase_14 AC 319 ms
51,504 KB
testcase_15 AC 310 ms
51,732 KB
testcase_16 AC 309 ms
51,340 KB
testcase_17 AC 314 ms
51,348 KB
testcase_18 AC 311 ms
51,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (a,b) = readLine()!!.split(" ").map{it.toInt()}
    for (i in a..b) {
        if (i % 3 == 0 || "3" in i.toString()) {
            println(i)
        } 
    }
}
0