結果
問題 | No.257 N言っちゃダメゲーム (3) |
ユーザー | Grenache |
提出日時 | 2015-07-31 22:51:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 113 ms / 2,000 ms |
コード長 | 1,913 bytes |
コンパイル時間 | 3,497 ms |
コンパイル使用メモリ | 78,508 KB |
実行使用メモリ | 67,476 KB |
平均クエリ数 | 3.70 |
最終ジャッジ日時 | 2024-07-16 20:55:54 |
合計ジャッジ時間 | 8,480 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
67,028 KB |
testcase_01 | AC | 106 ms
67,260 KB |
testcase_02 | AC | 106 ms
66,688 KB |
testcase_03 | AC | 107 ms
67,088 KB |
testcase_04 | AC | 104 ms
66,996 KB |
testcase_05 | AC | 102 ms
67,152 KB |
testcase_06 | AC | 108 ms
67,040 KB |
testcase_07 | AC | 106 ms
67,104 KB |
testcase_08 | AC | 106 ms
67,052 KB |
testcase_09 | AC | 106 ms
66,680 KB |
testcase_10 | AC | 110 ms
66,940 KB |
testcase_11 | AC | 106 ms
66,496 KB |
testcase_12 | AC | 113 ms
66,368 KB |
testcase_13 | AC | 106 ms
66,972 KB |
testcase_14 | AC | 108 ms
67,096 KB |
testcase_15 | AC | 106 ms
67,360 KB |
testcase_16 | AC | 107 ms
67,384 KB |
testcase_17 | AC | 108 ms
66,480 KB |
testcase_18 | AC | 107 ms
66,760 KB |
testcase_19 | AC | 108 ms
67,116 KB |
testcase_20 | AC | 108 ms
67,244 KB |
testcase_21 | AC | 107 ms
67,200 KB |
testcase_22 | AC | 107 ms
66,828 KB |
testcase_23 | AC | 107 ms
67,476 KB |
testcase_24 | AC | 103 ms
67,344 KB |
testcase_25 | AC | 104 ms
67,000 KB |
testcase_26 | AC | 107 ms
66,912 KB |
testcase_27 | AC | 107 ms
66,976 KB |
testcase_28 | AC | 105 ms
66,812 KB |
testcase_29 | AC | 105 ms
67,200 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder257 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = sc.nextInt(); int k = sc.nextInt(); if (n % (k + 1) == 1) { pr.println("0"); pr.flush(); } else { int b = 0; int a = (n - 1 - b) % (k + 1) + b; pr.println(a); pr.flush(); } int b; while ((b = sc.nextInt()) < n) { int a = (n - 1 - b) % (k + 1) + b; pr.println(a); pr.flush(); } pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }