結果

問題 No.736 約比
ユーザー nasu_ysmrnasu_ysmr
提出日時 2018-10-26 17:56:40
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 531 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 29,824 KB
実行使用メモリ 15,568 KB
最終ジャッジ日時 2024-11-19 06:25:45
合計ジャッジ時間 143,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1 ms
13,636 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1 ms
13,636 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 17 ms
13,636 KB
testcase_15 AC 1 ms
8,352 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1 ms
13,640 KB
testcase_19 AC 1 ms
8,356 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2 ms
13,640 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 1 ms
13,640 KB
testcase_26 AC 1 ms
8,352 KB
testcase_27 TLE -
testcase_28 AC 51 ms
8,352 KB
testcase_29 AC 602 ms
13,632 KB
testcase_30 TLE -
testcase_31 AC 2 ms
13,640 KB
testcase_32 TLE -
testcase_33 AC 253 ms
13,636 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 1 ms
13,640 KB
testcase_39 AC 1 ms
8,352 KB
testcase_40 TLE -
testcase_41 AC 1 ms
8,352 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 1 ms
6,816 KB
testcase_63 AC 1 ms
6,820 KB
testcase_64 AC 1 ms
15,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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