結果

問題 No.1603 Manhattan Social Distance
ユーザー kohei2019kohei2019
提出日時 2022-06-23 00:20:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2024-11-06 11:12:42
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,268 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 39 ms
52,756 KB
testcase_03 AC 39 ms
53,624 KB
testcase_04 AC 38 ms
52,616 KB
testcase_05 AC 39 ms
52,216 KB
testcase_06 AC 39 ms
53,140 KB
testcase_07 AC 38 ms
51,756 KB
testcase_08 AC 39 ms
52,284 KB
testcase_09 AC 39 ms
53,436 KB
testcase_10 AC 39 ms
53,140 KB
testcase_11 AC 39 ms
52,616 KB
testcase_12 AC 38 ms
52,724 KB
testcase_13 AC 39 ms
52,984 KB
testcase_14 AC 38 ms
52,832 KB
testcase_15 AC 38 ms
52,592 KB
testcase_16 AC 38 ms
53,204 KB
testcase_17 AC 39 ms
52,460 KB
testcase_18 AC 40 ms
51,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H,W = map(int,input().split())
N4 = N//4
rm = N%4
ans = 4*N4**2
if rm == 0:
    pass
elif rm == 1:
    ans += 2*N4
elif rm == 2:
    ans += 2*N4+2*N4+1
elif rm == 3:
    ans += 2*N4+2*N4+1+2*N4+1
print(ans*((H-1)+(W-1)))
0