結果
問題 | No.74 貯金箱の退屈 |
ユーザー | nebukuro09 |
提出日時 | 2017-06-02 11:23:57 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,281 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 116,116 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-12 19:37:31 |
合計ジャッジ時間 | 1,726 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 0 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 1 ms
6,944 KB |
testcase_25 | AC | 1 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,940 KB |
testcase_27 | AC | 1 ms
6,940 KB |
testcase_28 | AC | 1 ms
6,944 KB |
testcase_29 | AC | 1 ms
6,944 KB |
testcase_30 | AC | 1 ms
6,940 KB |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.stdio; int gaussianElimination(ref int[][] org_mat) { int N = org_mat.length.to!int; auto mat = new int[][](N, N+1); foreach (i; 0..N) foreach (j; 0..N+1) mat[i][j] = org_mat[i][j]; foreach (i; 0..N) { int maxval = 0; int maxrow = -1; foreach (j; i..N) if (abs(mat[j][i]) > maxval) maxval = abs(mat[j][i]), maxrow = j; if (maxval == 0) return 0; swap(mat[i], mat[maxrow]); foreach (j; 0..N) { if (j == i) continue; int mul = mat[j][i]; foreach (k; i..N+1) mat[j][k] ^= mul*mat[i][k]; } } return 1; } void main() { auto N = readln.chomp.to!int; auto D = readln.split.map!(to!int).array; auto W = readln.split.map!(to!int).array; auto mat = new int[][](N, N+1); foreach (i; 0..N) { mat[i][(i+D[i])%N] = 1; mat[i][((i-D[i])%N+N)%N] = 1; mat[i][N] = 1; } //mat.writeln; writeln( gaussianElimination(mat) ? "Yes" : "No"); }