結果
問題 | No.186 中華風 (Easy) |
ユーザー | ぴろず |
提出日時 | 2015-04-19 23:33:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,249 bytes |
コンパイル時間 | 2,319 ms |
コンパイル使用メモリ | 76,724 KB |
実行使用メモリ | 41,324 KB |
最終ジャッジ日時 | 2024-07-04 18:27:57 |
合計ジャッジ時間 | 5,343 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
40,992 KB |
testcase_01 | AC | 152 ms
39,908 KB |
testcase_02 | AC | 112 ms
41,156 KB |
testcase_03 | AC | 118 ms
40,968 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 104 ms
39,772 KB |
testcase_10 | AC | 111 ms
40,764 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 112 ms
41,200 KB |
testcase_14 | AC | 110 ms
40,052 KB |
testcase_15 | AC | 117 ms
41,068 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 101 ms
39,832 KB |
testcase_20 | AC | 112 ms
41,080 KB |
testcase_21 | AC | 115 ms
41,232 KB |
testcase_22 | AC | 119 ms
41,148 KB |
ソースコード
package no186; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long[] a = new long[3]; long[] b = new long[3]; long[] m = new long[3]; for(int i=0;i<3;i++) { int x = sc.nextInt(); int y = sc.nextInt(); a[i] = 1; b[i] = x; m[i] = y; } long[] x = Mod.linearCongruence(a, b, m); if (x == null) { System.out.println(-1); return; } System.out.println(x[0]); } } class Mod { public static long inverse(long a,long mod) { long b = mod, u = 1, v = 0; while(b > 0) { long temp; long t = a / b; a -= t * b; temp = a; a = b; b = temp; u -= t * v; temp = u; u = v; v = temp; } return (u % mod + mod) % mod; } public static long[] linearCongruence(long[] A,long[] B,long[] M) { long x = 0; long m = 1; for(int i=0;i<A.length;i++) { long a = A[i] * m; long b = B[i] - A[i] * x; long d = gcd(M[i],a); if (b % d != 0) { return null; } long t = b / d * inverse(a / d, M[i] / d) % (M[i] / d); x = x + m * t; m *= M[i] / d; } long[] ret = {x%m, m}; return ret; } public static long gcd(long a,long b) { while(b!=0) { long r = a%b; a = b; b = r; } return a; } }