結果
問題 | No.208 王将 |
ユーザー | yuppe19 😺 |
提出日時 | 2015-05-15 22:57:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 592 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 34,652 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 04:12:54 |
合計ジャッジ時間 | 809 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
6,812 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 0 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 0 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 0 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 0 ms
6,944 KB |
testcase_12 | AC | 0 ms
6,940 KB |
testcase_13 | AC | 0 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | AC | 0 ms
6,940 KB |
testcase_20 | AC | 0 ms
6,944 KB |
testcase_21 | AC | 0 ms
6,940 KB |
testcase_22 | AC | 1 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d%d%d%d", &x, &y, &x2, &y2); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <algorithm> using namespace std; int main(void) { int x, y, x2, y2; int res; scanf("%d%d%d%d", &x, &y, &x2, &y2); if(y==0 && y2==0 && x*x2>0 && abs(x)>abs(x2)) { res = abs(x) + 1; } else if(x==0 && x2==0 && y*y2>0 && abs(y)>abs(y2)) { res = abs(y) + 1; } // else if(x==0 || x2==0 || y==0||y2==0) { res=max(abs(x), abs(y)); } else if(x==y && x2==y2 && x*x2>0 && abs(x)>abs(x2)) { res = abs(x) + 3; } else if(x==-y && x2==-y2 && x*x2>0 && abs(x)>abs(x2)) { res = abs(x) + 3; } else { res = max(abs(x), abs(y)); } printf("%d\n", res); return 0; }