結果
問題 | No.325 マンハッタン距離2 |
ユーザー | FF256grhy |
提出日時 | 2015-12-18 14:18:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 808 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 23,936 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 08:31:44 |
合計ジャッジ時間 | 856 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 0 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 0 ms
5,376 KB |
testcase_11 | AC | 0 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
testcase_14 | AC | 0 ms
5,376 KB |
testcase_15 | AC | 0 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 0 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=] 35 | printf("%d\n", ans); | ~^ ~~~ | | | | int long long int | %lld main.cpp:19:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 19 | scanf("%lld%lld%lld%lld%lld", &x1, &y1, &x2, &y2, &d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> long long int max(long long int a, long long int b) { return (a > b ? a : b); } long long int sum(long long int n) { return n * (n + 1) / 2; } long long int f(long long int a, long long int b, long long int l) { if(l <= 0 || a <= 0 || b <= 0) { return 0; } if(l < a + b) { return sum(l) - sum( max(0, l - a) ) - sum( max(0, l - b) ); } return a * b; } int main(void) { long long int x1, y1, x2, y2, d; scanf("%lld%lld%lld%lld%lld", &x1, &y1, &x2, &y2, &d); long long int ans = 0, i, a, b, temp; for(i = 0; i < 4; i++) { a = max(x1, 0), b = max(y1, 1); ans += f(x2 - a + 1, y2 - b + 1, d - (a + b - 1)); temp = x1; x1 = -y2; y2 = x2; x2 = -y1; y1 = temp; } if(x1 <= 0 && 0 <= x2 && y1 <= 0 && 0 <= y2) { ans++; } printf("%d\n", ans); return 0; }