結果

問題 No.736 約比
ユーザー nasu_ysmrnasu_ysmr
提出日時 2018-10-29 17:19:30
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 959 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 23:01:09
合計ジャッジ時間 8,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 19 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 226 ms
5,376 KB
testcase_43 AC 41 ms
5,376 KB
testcase_44 AC 7 ms
5,376 KB
testcase_45 AC 110 ms
5,376 KB
testcase_46 AC 906 ms
5,376 KB
testcase_47 AC 43 ms
5,376 KB
testcase_48 AC 188 ms
5,376 KB
testcase_49 AC 1,174 ms
5,376 KB
testcase_50 AC 1,253 ms
5,376 KB
testcase_51 WA -
testcase_52 AC 29 ms
5,376 KB
testcase_53 AC 27 ms
5,376 KB
testcase_54 AC 91 ms
5,376 KB
testcase_55 AC 84 ms
5,376 KB
testcase_56 AC 452 ms
5,376 KB
testcase_57 AC 194 ms
5,376 KB
testcase_58 AC 280 ms
5,376 KB
testcase_59 AC 116 ms
5,376 KB
testcase_60 AC 787 ms
5,376 KB
testcase_61 AC 118 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main()
{
    long long D;
    int i;
    long long j;
    int X=0;
    int N;
    long long A[100];
    long long minimumA;
    scanf("%d", &N);
    for(i=0; i<N; i++){
        scanf("%lld", &A[i]);
    }
    minimumA = A[0];
    for(i=1; i<N; i++){
        if(A[i] < minimumA){
            minimumA = A[i];
        }
    }
    for(j=1; j*j<=minimumA; j++){
        if(minimumA%j==0){
            D=minimumA/j;
            for(i=0; i<N; i++){
                if(A[i]%D==0){
                    X++;
                }else{
                    break;
                }
            }
            if(X==N){
                for(i=0; i<N; i++){
                    A[i] = A[i]/D;
                }
                break;
            }else{
                X=0;
            }
        }
    }
    for(i=0; i<N-1; i++){
        printf("%lld:", A[i]);
    }
    printf("%lld", A[N-1]);
    return 0;
}
0