結果

問題 No.736 約比
ユーザー tsunabittsunabit
提出日時 2019-08-06 14:45:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,863 bytes
コンパイル時間 4,184 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-07-18 13:56:37
合計ジャッジ時間 14,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,360 KB
testcase_01 AC 120 ms
40,624 KB
testcase_02 AC 115 ms
40,340 KB
testcase_03 AC 120 ms
40,512 KB
testcase_04 AC 128 ms
42,168 KB
testcase_05 AC 125 ms
42,020 KB
testcase_06 AC 121 ms
41,624 KB
testcase_07 AC 141 ms
41,468 KB
testcase_08 AC 134 ms
42,012 KB
testcase_09 AC 139 ms
41,812 KB
testcase_10 AC 133 ms
41,896 KB
testcase_11 AC 136 ms
41,900 KB
testcase_12 AC 136 ms
41,920 KB
testcase_13 AC 137 ms
41,772 KB
testcase_14 AC 118 ms
41,660 KB
testcase_15 AC 143 ms
41,976 KB
testcase_16 AC 135 ms
41,532 KB
testcase_17 AC 152 ms
41,956 KB
testcase_18 AC 137 ms
41,940 KB
testcase_19 AC 129 ms
40,560 KB
testcase_20 AC 140 ms
41,640 KB
testcase_21 AC 139 ms
41,676 KB
testcase_22 AC 131 ms
41,684 KB
testcase_23 AC 130 ms
41,756 KB
testcase_24 AC 141 ms
41,884 KB
testcase_25 AC 114 ms
41,408 KB
testcase_26 AC 120 ms
41,932 KB
testcase_27 AC 135 ms
41,812 KB
testcase_28 AC 139 ms
41,888 KB
testcase_29 AC 119 ms
40,696 KB
testcase_30 AC 132 ms
42,228 KB
testcase_31 AC 119 ms
41,404 KB
testcase_32 AC 115 ms
41,940 KB
testcase_33 AC 142 ms
41,760 KB
testcase_34 AC 121 ms
41,388 KB
testcase_35 AC 122 ms
41,560 KB
testcase_36 AC 141 ms
41,896 KB
testcase_37 AC 139 ms
41,880 KB
testcase_38 AC 144 ms
42,212 KB
testcase_39 AC 122 ms
41,340 KB
testcase_40 AC 139 ms
41,876 KB
testcase_41 AC 156 ms
42,224 KB
testcase_42 AC 131 ms
40,656 KB
testcase_43 AC 143 ms
42,080 KB
testcase_44 AC 140 ms
41,668 KB
testcase_45 AC 134 ms
43,360 KB
testcase_46 AC 130 ms
41,776 KB
testcase_47 WA -
testcase_48 AC 134 ms
41,480 KB
testcase_49 AC 106 ms
41,824 KB
testcase_50 AC 125 ms
42,000 KB
testcase_51 AC 116 ms
41,696 KB
testcase_52 AC 128 ms
42,060 KB
testcase_53 AC 130 ms
41,760 KB
testcase_54 AC 129 ms
41,740 KB
testcase_55 AC 130 ms
41,500 KB
testcase_56 AC 116 ms
41,636 KB
testcase_57 AC 124 ms
40,384 KB
testcase_58 AC 146 ms
41,628 KB
testcase_59 AC 148 ms
41,768 KB
testcase_60 AC 126 ms
41,660 KB
testcase_61 AC 135 ms
41,912 KB
testcase_62 AC 131 ms
41,660 KB
testcase_63 AC 129 ms
41,684 KB
testcase_64 AC 122 ms
41,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No736 {
    public static void main(String[] args) {
    	try {
    		// 入力元がファイルの場合
    		// Scanner sc = new Scanner(new File("/Users/aa352872/Desktop/test"));
    		// 入力元が標準入力の場合
    		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;
//    				System.out.println("分子 = " + si + " 分母 = " + bo + " 余り = " + ama);
    				if(ama == 0) {
    					break;
    				}else {
    					si = bo;
    					bo = ama;
    				}
    			};
    			if(max == 1) {
    				max = bo;
//    				System.out.println("max = " + max + " a[" + i + "] = " + a[i]);
    			}else if(max < bo) {
//    				System.out.println("coco1");
    				if(bo % max == 0) {
    					// nothing
    				}else {
    					max = 1;
    					break;
    				}
    			}else if(max > bo) {
//    				System.out.println("coco2");
    				max = bo;
//    				if(max % bo == 0) {
//    					max = bo;
//    				}else {
//    					max = 1;
//    					break;
//    				}
    			}
    		}
    		for(int i = 1; i < n; i++) {
    			if(a[i]%max != 0) {
    				max = 1;
    			}
    		}
//    		System.out.println("last max = " + max);
//    		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("");
    		
    	}catch (Exception e) {
    		System.out.println("例外が発生しました。");
            System.out.println(e);
            return;
    	}
    }
}
0