結果

問題 No.736 約比
ユーザー tsunabittsunabit
提出日時 2019-08-05 18:44:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 79,492 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-07-18 13:40:43
合計ジャッジ時間 15,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
54,172 KB
testcase_01 WA -
testcase_02 AC 155 ms
54,384 KB
testcase_03 AC 163 ms
54,420 KB
testcase_04 AC 163 ms
54,268 KB
testcase_05 AC 154 ms
54,188 KB
testcase_06 WA -
testcase_07 AC 167 ms
54,540 KB
testcase_08 AC 163 ms
54,428 KB
testcase_09 AC 147 ms
53,160 KB
testcase_10 AC 165 ms
54,540 KB
testcase_11 AC 165 ms
54,476 KB
testcase_12 AC 166 ms
54,356 KB
testcase_13 AC 168 ms
54,316 KB
testcase_14 AC 156 ms
54,520 KB
testcase_15 AC 163 ms
54,444 KB
testcase_16 AC 155 ms
54,356 KB
testcase_17 WA -
testcase_18 AC 167 ms
54,420 KB
testcase_19 AC 160 ms
54,376 KB
testcase_20 WA -
testcase_21 AC 163 ms
54,428 KB
testcase_22 AC 149 ms
54,332 KB
testcase_23 AC 149 ms
54,364 KB
testcase_24 AC 164 ms
54,380 KB
testcase_25 AC 147 ms
54,144 KB
testcase_26 AC 133 ms
52,928 KB
testcase_27 AC 166 ms
54,492 KB
testcase_28 AC 164 ms
54,292 KB
testcase_29 AC 147 ms
54,276 KB
testcase_30 AC 165 ms
54,392 KB
testcase_31 AC 147 ms
54,104 KB
testcase_32 AC 146 ms
53,988 KB
testcase_33 AC 164 ms
54,508 KB
testcase_34 AC 134 ms
53,076 KB
testcase_35 AC 146 ms
54,204 KB
testcase_36 AC 164 ms
54,336 KB
testcase_37 AC 164 ms
54,380 KB
testcase_38 AC 165 ms
54,524 KB
testcase_39 AC 148 ms
54,008 KB
testcase_40 AC 170 ms
54,356 KB
testcase_41 AC 167 ms
54,336 KB
testcase_42 AC 163 ms
54,388 KB
testcase_43 AC 164 ms
54,564 KB
testcase_44 AC 161 ms
54,360 KB
testcase_45 AC 161 ms
54,424 KB
testcase_46 AC 149 ms
54,372 KB
testcase_47 WA -
testcase_48 AC 156 ms
54,300 KB
testcase_49 AC 154 ms
54,124 KB
testcase_50 AC 156 ms
54,220 KB
testcase_51 AC 156 ms
54,100 KB
testcase_52 AC 169 ms
54,420 KB
testcase_53 AC 163 ms
54,604 KB
testcase_54 AC 153 ms
54,360 KB
testcase_55 AC 153 ms
54,228 KB
testcase_56 AC 160 ms
54,404 KB
testcase_57 AC 150 ms
54,088 KB
testcase_58 AC 164 ms
54,304 KB
testcase_59 AC 167 ms
54,096 KB
testcase_60 AC 154 ms
54,228 KB
testcase_61 AC 166 ms
54,228 KB
testcase_62 AC 131 ms
52,956 KB
testcase_63 AC 144 ms
54,216 KB
testcase_64 AC 148 ms
54,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No736 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	long a[] = new long[n];
    	
    	for(int i = 0; i < n; i++) {
    		a[i] = sc.nextLong();
    	}
    	
    	long max = 1;
    	for(int i = n-1; i > 0; i--) {
    		long si = a[i];
    		long bo = a[i - 1];
    		long ama = -1;
    		while(ama != 0) {
    			ama = si % bo;
    			if(ama == 0) {
    				break;
    			}else {
    				si = bo;
        			bo = ama;
    			}
    		};
    		if(max == 1) {
    			max = bo;
    		}else if(max < bo) {
    			if(bo % max == 0) {
    				// nothing
    			}else {
    				max = 1;
    				break;
    			}
    		}else if(max > bo) {
    			if(max % bo == 0) {
    				max = bo;
    			}else {
    				max = 1;
    				break;
    			}
    		}
    		
    	}
//    	System.out.println("max = " + max);
    	
    	System.out.print(a[0]/max);
    	for(int i = 1; i < n; i++) {
    		System.out.print(":" + a[i]/max);
    	}
    	System.out.println("");
    	
    }
}
0