結果

問題 No.1256 連続整数列
ユーザー rutilicusrutilicus
提出日時 2021-02-13 22:15:37
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 13,839 ms
コンパイル使用メモリ 427,688 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-07-21 02:30:18
合計ジャッジ時間 21,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,112 KB
testcase_01 AC 292 ms
54,116 KB
testcase_02 AC 294 ms
54,008 KB
testcase_03 AC 292 ms
54,000 KB
testcase_04 AC 295 ms
54,104 KB
testcase_05 AC 297 ms
54,204 KB
testcase_06 AC 296 ms
53,984 KB
testcase_07 AC 293 ms
54,100 KB
testcase_08 AC 293 ms
54,116 KB
testcase_09 AC 294 ms
54,248 KB
testcase_10 AC 292 ms
54,060 KB
testcase_11 AC 292 ms
54,248 KB
testcase_12 AC 294 ms
54,004 KB
testcase_13 AC 292 ms
54,124 KB
testcase_14 AC 292 ms
54,208 KB
testcase_15 AC 295 ms
54,228 KB
testcase_16 AC 292 ms
54,112 KB
testcase_17 AC 295 ms
54,128 KB
testcase_18 AC 297 ms
54,020 KB
testcase_19 AC 294 ms
54,036 KB
testcase_20 AC 295 ms
54,216 KB
testcase_21 AC 311 ms
54,128 KB
testcase_22 AC 299 ms
54,296 KB
testcase_23 AC 299 ms
54,116 KB
testcase_24 AC 296 ms
54,240 KB
testcase_25 AC 296 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    // 何も分からん
    builder.appendLine(if (readInputLine() == "1") "NO" else "YES")

    print(builder.toString())
}

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