結果
問題 | No.3092 3-2-SAT |
ユーザー | 箱星 |
提出日時 | 2022-04-01 21:28:32 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 12,439 ms |
コンパイル使用メモリ | 433,924 KB |
実行使用メモリ | 55,868 KB |
最終ジャッジ日時 | 2024-11-20 08:13:06 |
合計ジャッジ時間 | 23,340 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
54,488 KB |
testcase_01 | AC | 424 ms
55,800 KB |
testcase_02 | AC | 421 ms
55,688 KB |
testcase_03 | AC | 422 ms
55,556 KB |
testcase_04 | AC | 422 ms
55,868 KB |
testcase_05 | AC | 422 ms
55,400 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 347 ms
54,324 KB |
testcase_12 | AC | 338 ms
54,412 KB |
testcase_13 | AC | 332 ms
54,360 KB |
testcase_14 | AC | 343 ms
54,276 KB |
testcase_15 | AC | 338 ms
54,260 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun PrintWriter.solve() { val n = nextInt() println(Array(n) { 1 }.joinToString(" ")) } 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