結果

問題 No.1256 連続整数列
ユーザー rutilicusrutilicus
提出日時 2021-02-13 22:06:41
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 8,675 ms
コンパイル使用メモリ 423,244 KB
実行使用メモリ 49,756 KB
最終ジャッジ日時 2024-07-21 02:18:19
合計ジャッジ時間 18,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 322 ms
49,576 KB
testcase_05 WA -
testcase_06 AC 250 ms
49,540 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 247 ms
49,480 KB
testcase_10 AC 250 ms
49,524 KB
testcase_11 AC 252 ms
49,708 KB
testcase_12 AC 238 ms
49,524 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 246 ms
49,592 KB
testcase_16 WA -
testcase_17 AC 251 ms
49,412 KB
testcase_18 WA -
testcase_19 AC 244 ms
49,476 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 246 ms
49,624 KB
testcase_23 AC 239 ms
49,472 KB
testcase_24 WA -
testcase_25 AC 240 ms
49,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val a = readInputLine().toInt()

    builder.appendLine(if (a % 3 == 0) "YES" else "NO")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0