結果

問題 No.736 約比
ユーザー masamasa
提出日時 2019-01-11 13:59:40
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,046 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 93,032 KB
最終ジャッジ日時 2024-11-28 01:41:30
合計ジャッジ時間 113,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
47,816 KB
testcase_01 AC 155 ms
88,400 KB
testcase_02 AC 168 ms
47,700 KB
testcase_03 AC 169 ms
87,860 KB
testcase_04 AC 167 ms
47,884 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 167 ms
48,012 KB
testcase_11 AC 170 ms
87,928 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 154 ms
47,144 KB
testcase_15 AC 182 ms
87,700 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 171 ms
47,844 KB
testcase_19 AC 177 ms
88,188 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 159 ms
47,728 KB
testcase_23 TLE -
testcase_24 AC 167 ms
47,736 KB
testcase_25 AC 160 ms
87,220 KB
testcase_26 AC 175 ms
48,408 KB
testcase_27 AC 176 ms
88,844 KB
testcase_28 AC 175 ms
47,984 KB
testcase_29 AC 526 ms
66,404 KB
testcase_30 AC 171 ms
47,900 KB
testcase_31 AC 168 ms
88,696 KB
testcase_32 TLE -
testcase_33 AC 169 ms
86,816 KB
testcase_34 TLE -
testcase_35 AC 150 ms
87,144 KB
testcase_36 AC 173 ms
48,000 KB
testcase_37 AC 170 ms
87,724 KB
testcase_38 AC 171 ms
47,916 KB
testcase_39 AC 169 ms
87,908 KB
testcase_40 AC 172 ms
47,636 KB
testcase_41 AC 177 ms
86,552 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 147 ms
41,824 KB
testcase_63 AC 161 ms
42,312 KB
testcase_64 AC 165 ms
93,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        int count  = sc.nextInt();
        List<Long> list  = new ArrayList<Long>(count);
        long min    = 0;
        String answer = "";
        
        for (int i = 0; i < count; i++) {
            long val = sc.nextLong();
            
            if (min == 0) {
                min = val;
            } else {
                if (val < min) {
                    min = val;
                } 
            }
            list.add(val);
        }
        
        main: for (long i = min; i != 0; i--) {
            answer = "";
            for (long a : list) {
                if (a % i == 0) {
                    answer += Long.toString(a / i) + ":";
                } else {
                    continue main;
                }
            }
            break;
        }
        
        System.out.println(answer.substring(0, answer.length() - 1));
    }
}
0