結果

問題 No.186 中華風 (Easy)
ユーザー htensaihtensai
提出日時 2020-02-10 15:27:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 77,112 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-10-01 06:24:47
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,116 KB
testcase_01 AC 121 ms
41,200 KB
testcase_02 AC 110 ms
40,688 KB
testcase_03 AC 107 ms
41,000 KB
testcase_04 AC 116 ms
40,512 KB
testcase_05 AC 133 ms
41,272 KB
testcase_06 AC 133 ms
41,188 KB
testcase_07 AC 130 ms
41,588 KB
testcase_08 AC 129 ms
41,128 KB
testcase_09 AC 123 ms
40,148 KB
testcase_10 AC 126 ms
40,912 KB
testcase_11 AC 133 ms
41,216 KB
testcase_12 AC 118 ms
41,308 KB
testcase_13 AC 114 ms
40,524 KB
testcase_14 AC 114 ms
40,128 KB
testcase_15 AC 111 ms
40,980 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 120 ms
41,204 KB
testcase_19 AC 123 ms
41,372 KB
testcase_20 AC 114 ms
40,284 KB
testcase_21 AC 114 ms
40,356 KB
testcase_22 AC 124 ms
41,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int x1 = sc.nextInt();
		long y1 = sc.nextInt();
		int x2 = sc.nextInt();
		int y2 = sc.nextInt();
		int x3 = sc.nextInt();
		int y3 = sc.nextInt();
		long ans = 0;
		for (int i = 0; i < 1000000; i++) {
		    ans = y1 * i + x1;
		    if (ans % y2 == x2) {
		        break;
		    }
		}
		if (ans % y2 != x2) {
		    System.out.println(-1);
		    return;
		}
		long y1y2 = lcm(y1, y2);
		long fine = 0;
		for (int i = 0; i < 1000000; i++) {
		    fine = y1y2 * i + ans;
		    if (fine % y3 == x3) {
		        System.out.println(fine);
		        return;
		    }
		}
		System.out.println(-1);
   }
    static long lcm(long x, long y) {
        return x / gcd(x, y) * y;
    }
    
    static long gcd(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return gcd(y, x % y);
        }
    }
}
0