結果
問題 | No.185 和風 |
ユーザー | Tsu0664 |
提出日時 | 2015-05-20 23:28:58 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 338 bytes |
コンパイル時間 | 144 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 05:53:54 |
合計ジャッジ時間 | 545 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,944 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘fscanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | fscanf(stdin, "%d", &n); | ^~~~~~~~~~~~~~~~~~~~~~~ main.c:8:9: warning: ignoring return value of ‘fscanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | fscanf(stdin, "%ld %ld", &x, &y); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:13:17: warning: ignoring return value of ‘fscanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | fscanf(stdin, "%ld %ld", &x, &y); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { // your code goes here int n, i; long x, y, ans; fscanf(stdin, "%d", &n); fscanf(stdin, "%ld %ld", &x, &y); ans = y - x; if (ans < 0) ans = -1; for(i = 0; i < n; i++){ fscanf(stdin, "%ld %ld", &x, &y); if(ans != (y - x)){ ans = -1; break; } } printf("%ld\n", ans); return 0; }