結果

問題 No.1603 Manhattan Social Distance
ユーザー 👑 rin204rin204
提出日時 2021-07-16 21:24:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 53,916 KB
最終ジャッジ日時 2024-07-06 08:13:36
合計ジャッジ時間 1,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,900 KB
testcase_01 AC 30 ms
52,392 KB
testcase_02 AC 32 ms
52,128 KB
testcase_03 AC 32 ms
53,228 KB
testcase_04 AC 31 ms
52,244 KB
testcase_05 WA -
testcase_06 AC 30 ms
51,940 KB
testcase_07 AC 30 ms
51,824 KB
testcase_08 AC 29 ms
52,836 KB
testcase_09 AC 31 ms
52,612 KB
testcase_10 AC 30 ms
52,532 KB
testcase_11 AC 30 ms
52,620 KB
testcase_12 AC 30 ms
51,992 KB
testcase_13 AC 35 ms
52,980 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
52,900 KB
testcase_17 AC 30 ms
52,328 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, h, w = map(int, input().split())

lst = []
for i in range(3, -1, -1):
    lst.append((n + i) // 4)

ans = 0
pos = [(1, 1), (h, 1), (1, w), (h, w)]
for i in range(4):
    for j in range(i + 1, 4):
        ans += lst[i] * lst[j] * (abs(pos[i][0] - pos[j][0]) + abs(pos[i][1] - pos[j][1]))
print(ans)
0