結果
問題 | No.2789 hako111223’s Master Thesis |
ユーザー | 箱星 |
提出日時 | 2024-02-11 23:20:37 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 267 ms / 2,000 ms |
コード長 | 1,000 bytes |
コンパイル時間 | 12,492 ms |
コンパイル使用メモリ | 433,048 KB |
実行使用メモリ | 50,144 KB |
最終ジャッジ日時 | 2024-05-03 20:45:22 |
合計ジャッジ時間 | 18,358 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 253 ms
50,048 KB |
testcase_01 | AC | 263 ms
49,896 KB |
testcase_02 | AC | 264 ms
49,960 KB |
testcase_03 | AC | 253 ms
49,772 KB |
testcase_04 | AC | 263 ms
50,044 KB |
testcase_05 | AC | 259 ms
49,848 KB |
testcase_06 | AC | 255 ms
50,076 KB |
testcase_07 | AC | 251 ms
49,884 KB |
testcase_08 | AC | 267 ms
49,832 KB |
testcase_09 | AC | 251 ms
50,144 KB |
testcase_10 | AC | 246 ms
49,800 KB |
testcase_11 | AC | 264 ms
49,956 KB |
testcase_12 | AC | 258 ms
49,776 KB |
testcase_13 | AC | 258 ms
50,076 KB |
testcase_14 | AC | 248 ms
50,008 KB |
testcase_15 | AC | 259 ms
49,844 KB |
testcase_16 | AC | 259 ms
49,732 KB |
testcase_17 | AC | 255 ms
49,916 KB |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val a = nextInt() val b = nextInt() val c = nextInt() val d = nextInt() val e = 31 - a + b if (c <= e) { println(1) } else if (d <= e) { println(2) } else { println(3) } } fun main() { Thread(null, { val writer = PrintWriter(System.out, false) writer.solve() writer.flush() }, "solve", abs(1L.shl(26))) .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } } .apply { start() }.join() } // region Scanner private var st = StringTokenizer("") private val br = System.`in`.bufferedReader() fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() // endregion