結果
問題 | No.325 マンハッタン距離2 |
ユーザー | FF256grhy |
提出日時 | 2015-12-18 14:17:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 23,936 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 08:31:43 |
合計ジャッジ時間 | 935 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 0 ms
5,376 KB |
testcase_16 | AC | 0 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:37:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=] 37 | printf("%d\n", ans); | ~^ ~~~ | | | | int long long int | %lld main.cpp:21:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | 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(a > b) { long long int temp = b; b = a; a = temp; } if(l <= 0 || a <= 0) { return 0; } if(l <= b) { return sum(l) - sum( max(0, l - a) ); } return a * b - sum( max(a + b - 1 - l, 0) ); } 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; }