結果

問題 No.186 中華風 (Easy)
ユーザー htensaihtensai
提出日時 2020-02-10 15:32:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 2,797 ms
コンパイル使用メモリ 77,268 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-07-19 18:37:54
合計ジャッジ時間 6,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,160 KB
testcase_01 AC 142 ms
41,404 KB
testcase_02 AC 139 ms
40,980 KB
testcase_03 AC 109 ms
40,148 KB
testcase_04 AC 147 ms
41,520 KB
testcase_05 AC 149 ms
40,872 KB
testcase_06 AC 157 ms
41,308 KB
testcase_07 AC 153 ms
41,432 KB
testcase_08 AC 157 ms
41,432 KB
testcase_09 AC 156 ms
41,172 KB
testcase_10 AC 153 ms
41,452 KB
testcase_11 AC 163 ms
41,336 KB
testcase_12 AC 146 ms
41,348 KB
testcase_13 AC 148 ms
41,096 KB
testcase_14 AC 149 ms
41,440 KB
testcase_15 AC 131 ms
41,408 KB
testcase_16 AC 130 ms
41,232 KB
testcase_17 AC 131 ms
41,496 KB
testcase_18 AC 139 ms
41,352 KB
testcase_19 AC 149 ms
41,248 KB
testcase_20 AC 147 ms
41,304 KB
testcase_21 AC 145 ms
41,224 KB
testcase_22 AC 145 ms
41,192 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();
		if (x1 == 0 && x2 == 0 && x3 == 0) {
		    System.out.println(lcm(lcm(y1, y2), y3));
		    return;
		}
		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