結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,336 KB
testcase_01 AC 30 ms
53,156 KB
testcase_02 AC 33 ms
53,220 KB
testcase_03 AC 32 ms
52,804 KB
testcase_04 AC 32 ms
52,668 KB
testcase_05 WA -
testcase_06 AC 31 ms
52,608 KB
testcase_07 AC 30 ms
52,832 KB
testcase_08 AC 30 ms
53,012 KB
testcase_09 AC 30 ms
52,972 KB
testcase_10 AC 30 ms
52,212 KB
testcase_11 AC 30 ms
53,372 KB
testcase_12 AC 30 ms
51,876 KB
testcase_13 AC 30 ms
52,400 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
51,880 KB
testcase_17 AC 29 ms
52,548 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)
lst[1], lst[2] = lst[2], lst[1]

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