結果
問題 | No.187 中華風 (Hard) |
ユーザー | kenkoooo |
提出日時 | 2015-04-20 09:49:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,222 bytes |
コンパイル時間 | 2,129 ms |
コンパイル使用メモリ | 76,696 KB |
実行使用メモリ | 43,808 KB |
最終ジャッジ日時 | 2024-07-04 17:26:24 |
合計ジャッジ時間 | 7,618 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 193 ms
43,044 KB |
testcase_01 | AC | 196 ms
42,972 KB |
testcase_02 | WA | - |
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 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 126 ms
40,792 KB |
testcase_18 | AC | 191 ms
42,944 KB |
testcase_19 | AC | 132 ms
41,156 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class Main { private static final int MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int[] X = new int[N]; int[] Y = new int[N]; for (int i = 0; i < N; i++) { X[i] = sc.nextInt(); Y[i] = sc.nextInt(); } for (int i = 1; i < N; i++) { int[] cmt = cmt(X[0], Y[0], X[i], Y[i]); if (cmt[0] < 0) { System.out.println(-1); return; } X[0] = cmt[0]; Y[0] = cmt[1]; } if (X[0] == 0) { X[0] = Y[0]; } System.out.println(X[0]); } static int[] extgcd(int a, int b, int[] is) { if (a == 0) { is[0] = 0; is[1] = 1; is[2] = b; } else { extgcd(b % a, a, is); int x = is[1] - b / a * is[0]; is[1] = is[0]; is[0] = x; } return is; } static int[] cmt(int a1, int mo1, int a2, int mo2) { int[] exgcd = extgcd(mo1, mo2, new int[3]); int g = exgcd[2]; int x = exgcd[0]; a1 %= mo1; a2 %= mo2; if (a1 % exgcd[2] != a2 % exgcd[2]) { return new int[] { -1, 0 }; } int lcm = mo1 * (mo2 / g); int v = a1 + ((a2 - a1) % lcm) * x % lcm * (mo1 / g); return new int[] { ((v % lcm) + lcm) % lcm, lcm }; } }