結果

問題 No.186 中華風 (Easy)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 00:37:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 2,861 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 41,264 KB
最終ジャッジ日時 2024-07-19 18:23:59
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,028 KB
testcase_01 AC 114 ms
39,952 KB
testcase_02 AC 124 ms
41,072 KB
testcase_03 AC 113 ms
41,044 KB
testcase_04 AC 143 ms
41,108 KB
testcase_05 AC 122 ms
40,116 KB
testcase_06 AC 127 ms
40,224 KB
testcase_07 AC 142 ms
41,108 KB
testcase_08 AC 139 ms
41,088 KB
testcase_09 AC 128 ms
40,108 KB
testcase_10 AC 132 ms
41,044 KB
testcase_11 AC 144 ms
41,016 KB
testcase_12 AC 137 ms
41,116 KB
testcase_13 AC 136 ms
41,140 KB
testcase_14 AC 137 ms
41,264 KB
testcase_15 AC 129 ms
41,008 KB
testcase_16 AC 125 ms
41,052 KB
testcase_17 AC 103 ms
40,100 KB
testcase_18 AC 123 ms
40,888 KB
testcase_19 AC 113 ms
41,008 KB
testcase_20 AC 108 ms
40,028 KB
testcase_21 AC 112 ms
40,312 KB
testcase_22 AC 123 ms
41,012 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]&&b>0){
                    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