結果

問題 No.406 鴨等間隔の法則
ユーザー RadPeriaRadPeria
提出日時 2017-12-04 22:55:46
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 03:18:18
合計ジャッジ時間 1,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 7 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 13 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 13 ms
5,376 KB
testcase_28 AC 12 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 12 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int abs(int x){
        if(x<0) return -x;
        return x;
}
unsigned int N;
int main(){
        scanf("%d", &N);
        unsigned int x[N];
        for(int i=0;i<N;i++){
                scanf("%d", &x[i]);
        }
        int count0 =0,count =0;
        for(int i=0;i<N;i++){
                if(abs(x[i+1]-x[i])==0){
                        count0 = 1;
                }else if(abs(x[i+1]-x[i]) == abs(x[i+2]-x[i+1])){
                        count ++;
                }
        }
        if(count0 == 1){
                printf("NO\n");
        }else if(count == N-2){
                printf("YES\n");
        }else{
                printf("NO\n");
        }
        return 0;
}
0