結果

問題 No.207 世界のなんとか
ユーザー da_louisda_louis
提出日時 2020-02-07 00:24:56
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 12,184 ms
コンパイル使用メモリ 439,668 KB
実行使用メモリ 57,068 KB
最終ジャッジ日時 2024-09-25 07:05:16
合計ジャッジ時間 18,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
56,820 KB
testcase_01 AC 301 ms
56,852 KB
testcase_02 AC 303 ms
56,744 KB
testcase_03 AC 307 ms
56,996 KB
testcase_04 AC 306 ms
56,676 KB
testcase_05 AC 304 ms
56,732 KB
testcase_06 AC 308 ms
56,940 KB
testcase_07 AC 303 ms
56,852 KB
testcase_08 AC 304 ms
56,764 KB
testcase_09 AC 303 ms
56,944 KB
testcase_10 AC 302 ms
56,840 KB
testcase_11 AC 304 ms
56,876 KB
testcase_12 AC 303 ms
56,860 KB
testcase_13 AC 307 ms
57,068 KB
testcase_14 AC 299 ms
56,872 KB
testcase_15 AC 304 ms
57,016 KB
testcase_16 AC 305 ms
56,720 KB
testcase_17 AC 304 ms
56,676 KB
testcase_18 AC 304 ms
56,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:11:63: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
        if (i % 3 == 0L || i.toString().contains('3')) answer.appendln(i)
                                                              ^

ソースコード

diff #

fun main(args: Array<String>) {
    p560()
}

fun p560() {
    val (a, b) = readLine()!!.split(' ').map { it.toLong() }

    val answer = StringBuilder()

    for (i in a..b) {
        if (i % 3 == 0L || i.toString().contains('3')) answer.appendln(i)
    }

    print(answer)
}
0