結果

問題 No.186 中華風 (Easy)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 00:34:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,309 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 53,944 KB
最終ジャッジ日時 2024-07-04 16:05:29
合計ジャッジ時間 6,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,592 KB
testcase_01 AC 142 ms
41,448 KB
testcase_02 AC 136 ms
40,984 KB
testcase_03 AC 118 ms
41,460 KB
testcase_04 AC 128 ms
41,172 KB
testcase_05 AC 128 ms
41,116 KB
testcase_06 AC 124 ms
40,472 KB
testcase_07 AC 120 ms
40,284 KB
testcase_08 AC 133 ms
40,288 KB
testcase_09 AC 129 ms
40,152 KB
testcase_10 AC 129 ms
41,112 KB
testcase_11 AC 132 ms
40,348 KB
testcase_12 AC 109 ms
39,940 KB
testcase_13 AC 111 ms
39,908 KB
testcase_14 AC 131 ms
41,428 KB
testcase_15 AC 106 ms
40,288 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 131 ms
41,340 KB
testcase_19 AC 119 ms
41,048 KB
testcase_20 AC 113 ms
41,316 KB
testcase_21 AC 119 ms
41,116 KB
testcase_22 AC 101 ms
40,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long[] x = new long[3];
        long[] y = new long[3];
        for(int i=0; i<3; i++){
            x[i]=koko.nextInt();
            y[i]=koko.nextInt();
        }
        long koubai = y[0]*y[1]/gcd(y[0],y[1]);
        long kouho = 0;
        long kuri = koubai/y[0];
        boolean ichi = false;
        for(long i=0; i<kuri+1; i++){
            long a = x[0]+i*y[0];
            if(a%y[1]==x[1]){
                kouho=a;
                ichi = true;
                break;
            }
        }
        if(!ichi){
            System.out.println(-1);
        }else{
            boolean flag = false;
            long koubaibai = koubai*y[2]/gcd(koubai,y[2]);
            long kurikuri = koubaibai/koubai;
            for(long i=0; i<kurikuri+1; i++){
                long b = kouho + i*koubai;
                if(b%y[2]==x[2]){
                    System.out.println(b);
                    flag=true;
                    break;
                }
            }
            if(!flag){
            System.out.println(-1);
            }
        
        }
    }
    static long gcd(long a, long b){
        return a == 0 ? b : gcd(b%a, a);
    }
}
0