結果
問題 | No.1219 Mancala Combo |
ユーザー | yama2019 |
提出日時 | 2020-09-04 21:51:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,486 bytes |
コンパイル時間 | 1,927 ms |
コンパイル使用メモリ | 76,428 KB |
実行使用メモリ | 39,616 KB |
最終ジャッジ日時 | 2024-11-26 12:38:25 |
合計ジャッジ時間 | 5,003 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
36,164 KB |
testcase_01 | AC | 48 ms
36,416 KB |
testcase_02 | AC | 47 ms
36,832 KB |
testcase_03 | AC | 46 ms
36,416 KB |
testcase_04 | AC | 47 ms
36,836 KB |
testcase_05 | AC | 48 ms
36,656 KB |
testcase_06 | AC | 47 ms
36,572 KB |
testcase_07 | AC | 47 ms
36,784 KB |
testcase_08 | AC | 50 ms
36,612 KB |
testcase_09 | AC | 51 ms
36,612 KB |
testcase_10 | AC | 50 ms
37,072 KB |
testcase_11 | AC | 47 ms
36,688 KB |
testcase_12 | AC | 46 ms
36,560 KB |
testcase_13 | AC | 48 ms
36,836 KB |
testcase_14 | AC | 47 ms
36,656 KB |
testcase_15 | AC | 47 ms
36,672 KB |
testcase_16 | AC | 48 ms
36,312 KB |
testcase_17 | AC | 100 ms
39,008 KB |
testcase_18 | AC | 113 ms
39,152 KB |
testcase_19 | AC | 97 ms
38,876 KB |
testcase_20 | AC | 110 ms
38,900 KB |
testcase_21 | AC | 99 ms
38,864 KB |
testcase_22 | AC | 104 ms
38,896 KB |
testcase_23 | AC | 117 ms
38,740 KB |
testcase_24 | AC | 112 ms
38,340 KB |
testcase_25 | AC | 100 ms
38,748 KB |
testcase_26 | AC | 114 ms
39,164 KB |
testcase_27 | AC | 118 ms
39,408 KB |
testcase_28 | WA | - |
ソースコード
import java.io.*; import java.util.*; import static java.lang.System.out; public class Main { static MyReader in = new MyReader(); public static void main(String[] args) { int N = in.i(); int[] A = in.ii(N); int d = 0; String ans = "Yes"; for (int i = N - 1; i >= 0; i--) { int c = A[i] + d; if (c % (i + 1) == 0) { d += c / (i + 1); } else { ans = "No"; break; } } out.println(ans); } } class MyReader extends BufferedReader { char[] cbuf = new char[1024]; int head = 0; int tail = 0; MyReader() { super(new InputStreamReader(System.in)); } char next() { if (head == tail) { try { tail = super.read(cbuf, 0, cbuf.length); } catch (IOException e) { e.printStackTrace(); } head = 0; } return cbuf[head++]; } void back() { head--; } boolean minus() { boolean minus; while (true) { char c = next(); if (!isDelimiter(c)) { if (!(minus = c == '-')) back(); return minus; } } } void skip() { while (isDelimiter(next())); back(); } char[] s(int N) { char[] cbuf = new char[N]; read(cbuf, 0, N); return cbuf; } public int read(char[] cbuf, int off, int len) { skip(); int i; for (i = 0; i < cbuf.length; i++) { char c = next(); if (isDelimiter(c)) { break; } cbuf[i] = c; } return i; } boolean isDelimiter(char c) { return c == ' ' || c == '\n' || c == '\r'; } int i() { boolean minus = minus(); int n = 0; while (true) { int k = next() - '0'; if (k < 0 || 9 < k) break; n = 10 * n + k; } return minus ? -n : n; } int[] ii(final int N) { int[] a = new int[N]; for (int j = 0; j < a.length; j++) a[j] = i(); return a; } long l() { boolean minus = minus(); long n = 0; while (true) { int k = next() - '0'; if (k < 0 || 9 < k) break; n = 10 * n + k; } return minus ? -n : n; } }