結果

問題 No.736 約比
ユーザー nasu_ysmrnasu_ysmr
提出日時 2018-10-29 16:30:37
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 849 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 23,168 KB
実行使用メモリ 14,920 KB
最終ジャッジ日時 2024-11-19 07:55:04
合計ジャッジ時間 87,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,640 KB
testcase_01 AC 4 ms
8,096 KB
testcase_02 AC 1 ms
13,640 KB
testcase_03 AC 1 ms
8,096 KB
testcase_04 AC 1 ms
13,640 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 0 ms
13,640 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1 ms
13,632 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 12 ms
13,640 KB
testcase_19 AC 1 ms
8,096 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 0 ms
13,636 KB
testcase_23 TLE -
testcase_24 AC 1 ms
8,104 KB
testcase_25 AC 1 ms
8,096 KB
testcase_26 AC 1 ms
13,636 KB
testcase_27 TLE -
testcase_28 AC 25 ms
13,636 KB
testcase_29 AC 314 ms
8,100 KB
testcase_30 AC 0 ms
13,636 KB
testcase_31 AC 1 ms
8,100 KB
testcase_32 TLE -
testcase_33 AC 1 ms
13,636 KB
testcase_34 AC 893 ms
8,100 KB
testcase_35 AC 1 ms
7,972 KB
testcase_36 AC 1 ms
13,632 KB
testcase_37 AC 1 ms
8,100 KB
testcase_38 AC 1 ms
13,636 KB
testcase_39 AC 1 ms
6,816 KB
testcase_40 AC 1 ms
6,816 KB
testcase_41 TLE -
testcase_42 AC 426 ms
6,820 KB
testcase_43 AC 40 ms
6,820 KB
testcase_44 TLE -
testcase_45 AC 250 ms
6,816 KB
testcase_46 TLE -
testcase_47 AC 566 ms
6,816 KB
testcase_48 TLE -
testcase_49 AC 1,769 ms
6,820 KB
testcase_50 TLE -
testcase_51 AC 892 ms
6,820 KB
testcase_52 AC 872 ms
6,816 KB
testcase_53 AC 648 ms
6,816 KB
testcase_54 AC 982 ms
6,816 KB
testcase_55 AC 1,580 ms
6,816 KB
testcase_56 AC 1,026 ms
6,816 KB
testcase_57 TLE -
testcase_58 AC 1,448 ms
6,816 KB
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 1 ms
6,816 KB
testcase_63 AC 0 ms
6,816 KB
testcase_64 AC 1 ms
8,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%lld", &A[i]);
      |         ~~~~~^~~~~~~~~~~~~~~

ソースコード

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]<A[i-1]){
            minimumA = A[i];
        }
    }
    for(j = 1; j<=minimumA; j++){
        if(minimumA%j==0){
            D=minimumA/j;
            for(i=0; i<N; i++){
                if(A[i]%D==0){
                    X++;
                }
            }
            if(X==N){
                for(i=0; i<N-1; i++){
                    printf("%lld:", A[i]/D);
                }
                printf("%lld", A[i]/D);
                return 0;
            }else{
                X=0;
            }
        }
    }
}
0