結果

問題 No.207 世界のなんとか
ユーザー バカらっくバカらっく
提出日時 2019-09-23 10:36:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 5,000 ms
コード長 189 bytes
コンパイル時間 11,594 ms
コンパイル使用メモリ 433,172 KB
実行使用メモリ 57,152 KB
最終ジャッジ日時 2024-09-19 04:13:52
合計ジャッジ時間 19,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
57,052 KB
testcase_01 AC 318 ms
56,964 KB
testcase_02 AC 325 ms
57,000 KB
testcase_03 AC 316 ms
56,904 KB
testcase_04 AC 313 ms
56,968 KB
testcase_05 AC 315 ms
56,988 KB
testcase_06 AC 316 ms
57,100 KB
testcase_07 AC 323 ms
56,996 KB
testcase_08 AC 319 ms
57,060 KB
testcase_09 AC 321 ms
56,828 KB
testcase_10 AC 324 ms
56,932 KB
testcase_11 AC 325 ms
56,944 KB
testcase_12 AC 323 ms
56,928 KB
testcase_13 AC 325 ms
56,912 KB
testcase_14 AC 326 ms
56,968 KB
testcase_15 AC 318 ms
57,052 KB
testcase_16 AC 313 ms
57,024 KB
testcase_17 AC 315 ms
57,152 KB
testcase_18 AC 315 ms
56,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    readLine()!!.split(" ").map { it.toLong() }.let { (it[0]..it[1]) }.filter { it%3 == 0.toLong() || it.toString().contains('3') }.forEach { println(it) }
}

0