結果

問題 No.185 和風
ユーザー ElkElk
提出日時 2018-05-27 21:47:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 600 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 07:22:22
合計ジャッジ時間 756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d\n", &N);
      |     ~~~~~^~~~~~~~~~~~
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d %d\n", &X[0], &Y[0]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:10:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%d %d\n", &X[i], &Y[i]);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
    int N, i, ans;
    int X[1000], Y[1000];

    scanf("%d\n", &N);
    scanf("%d %d\n", &X[0], &Y[0]);
    for(i = 1; i < N; i++){
        scanf("%d %d\n", &X[i], &Y[i]);
        if(Y[i] - X[i] >= 0){
            if((Y[i] - X[i]) == (Y[i - 1] - X[i - 1])){
                ans = Y[i] - X[i];
                if(i == N - 1){
                    printf("%d\n", ans);
                }
            }else{
                printf("-1\n");
                break;
            }
        }else{
            printf("-1\n");
            break;
        }
    }

    return 0;
}
0