結果

問題 No.1003 サイコロの実装 (1)
ユーザー qszhuqszhu
提出日時 2022-10-05 23:02:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 11,233 ms
コンパイル使用メモリ 428,140 KB
実行使用メモリ 50,080 KB
最終ジャッジ日時 2024-06-10 12:41:49
合計ジャッジ時間 18,567 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
49,748 KB
testcase_01 AC 251 ms
49,720 KB
testcase_02 AC 260 ms
49,940 KB
testcase_03 AC 248 ms
49,972 KB
testcase_04 AC 263 ms
49,876 KB
testcase_05 AC 267 ms
49,816 KB
testcase_06 AC 260 ms
49,784 KB
testcase_07 AC 258 ms
49,940 KB
testcase_08 AC 261 ms
49,840 KB
testcase_09 AC 258 ms
50,024 KB
testcase_10 AC 249 ms
49,976 KB
testcase_11 AC 256 ms
50,032 KB
testcase_12 AC 256 ms
49,948 KB
testcase_13 AC 257 ms
49,776 KB
testcase_14 AC 255 ms
49,856 KB
testcase_15 AC 259 ms
49,964 KB
testcase_16 AC 253 ms
50,008 KB
testcase_17 AC 280 ms
49,952 KB
testcase_18 AC 265 ms
49,732 KB
testcase_19 AC 253 ms
49,924 KB
testcase_20 AC 246 ms
49,768 KB
testcase_21 AC 251 ms
49,980 KB
testcase_22 AC 258 ms
50,080 KB
testcase_23 AC 262 ms
50,028 KB
testcase_24 AC 248 ms
49,904 KB
testcase_25 AC 248 ms
49,884 KB
testcase_26 AC 263 ms
49,992 KB
testcase_27 AC 262 ms
49,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.system.exitProcess

val br = System.`in`.bufferedReader()

fun readLine(): String? = br.readLine()
fun readString() = readLine()!!
fun readInt() = readString().toInt()

const val MAX_STACK_SIZE: Long = 128 * 1024 * 1024

fun main() {
    val thread = Thread(null, ::run, "solve", MAX_STACK_SIZE)
    thread.setUncaughtExceptionHandler { _, e -> e.printStackTrace(); exitProcess(1) }
    thread.start()
}

fun run() {
    val N = readInt()
    output(solve(N))
}

fun solve(N: Int): Boolean = N % 6 == 0

fun output(res: Boolean) {
    println(if (res) "Yes" else "No")
}
0