結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,000 KB
testcase_01 AC 132 ms
53,696 KB
testcase_02 AC 129 ms
54,160 KB
testcase_03 AC 146 ms
54,236 KB
testcase_04 AC 136 ms
54,092 KB
testcase_05 AC 131 ms
54,244 KB
testcase_06 AC 125 ms
54,304 KB
testcase_07 AC 134 ms
54,520 KB
testcase_08 AC 142 ms
53,980 KB
testcase_09 AC 128 ms
54,236 KB
testcase_10 AC 140 ms
54,188 KB
testcase_11 AC 140 ms
54,372 KB
testcase_12 AC 132 ms
54,332 KB
testcase_13 AC 146 ms
54,140 KB
testcase_14 AC 113 ms
53,212 KB
testcase_15 AC 130 ms
53,704 KB
testcase_16 AC 127 ms
53,976 KB
testcase_17 WA -
testcase_18 AC 138 ms
54,256 KB
testcase_19 AC 121 ms
53,800 KB
testcase_20 WA -
testcase_21 AC 138 ms
54,276 KB
testcase_22 AC 122 ms
54,228 KB
testcase_23 AC 123 ms
54,044 KB
testcase_24 AC 143 ms
54,320 KB
testcase_25 AC 120 ms
54,236 KB
testcase_26 AC 121 ms
54,008 KB
testcase_27 AC 137 ms
54,076 KB
testcase_28 AC 143 ms
53,748 KB
testcase_29 AC 120 ms
53,988 KB
testcase_30 AC 134 ms
53,832 KB
testcase_31 AC 120 ms
53,576 KB
testcase_32 AC 108 ms
52,952 KB
testcase_33 AC 138 ms
54,516 KB
testcase_34 AC 124 ms
54,212 KB
testcase_35 AC 127 ms
54,212 KB
testcase_36 AC 152 ms
54,560 KB
testcase_37 AC 154 ms
54,536 KB
testcase_38 AC 147 ms
54,296 KB
testcase_39 AC 126 ms
53,724 KB
testcase_40 AC 145 ms
53,832 KB
testcase_41 AC 142 ms
54,244 KB
testcase_42 AC 142 ms
53,888 KB
testcase_43 AC 136 ms
54,192 KB
testcase_44 AC 136 ms
53,924 KB
testcase_45 AC 142 ms
54,160 KB
testcase_46 AC 130 ms
54,344 KB
testcase_47 WA -
testcase_48 AC 136 ms
54,420 KB
testcase_49 AC 124 ms
54,536 KB
testcase_50 AC 126 ms
54,328 KB
testcase_51 AC 131 ms
54,176 KB
testcase_52 AC 133 ms
54,536 KB
testcase_53 AC 130 ms
54,464 KB
testcase_54 AC 128 ms
53,976 KB
testcase_55 AC 133 ms
54,344 KB
testcase_56 AC 136 ms
53,800 KB
testcase_57 AC 131 ms
54,272 KB
testcase_58 AC 143 ms
54,532 KB
testcase_59 AC 140 ms
53,888 KB
testcase_60 AC 119 ms
53,136 KB
testcase_61 AC 148 ms
54,456 KB
testcase_62 AC 113 ms
52,960 KB
testcase_63 AC 120 ms
52,772 KB
testcase_64 AC 122 ms
52,824 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) {
//    			System.out.println("max = " + max);
    			max = bo;
    		}else if(max < bo) {
//    			System.out.println("max = " + max);
    			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);
    	
    	for(int i = 1; i < n; i++) {
    		if(a[i]%max != 0) {
    			max = 1;
    		}
    	}
//    	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