結果

問題 No.1603 Manhattan Social Distance
ユーザー mesame3993mesame3993
提出日時 2021-10-06 11:24:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 86,832 KB
実行使用メモリ 71,520 KB
最終ジャッジ日時 2023-09-30 08:41:21
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
71,192 KB
testcase_02 AC 66 ms
71,128 KB
testcase_03 AC 68 ms
71,192 KB
testcase_04 AC 66 ms
71,292 KB
testcase_05 AC 65 ms
71,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 64 ms
71,248 KB
testcase_09 AC 64 ms
71,196 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 67 ms
71,288 KB
testcase_14 AC 67 ms
71,396 KB
testcase_15 AC 68 ms
71,116 KB
testcase_16 WA -
testcase_17 AC 67 ms
71,388 KB
testcase_18 AC 67 ms
71,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, h, w = map(int, input().split())
ans = (n//2) * (n//2) * (h-1 + w-1)
print(ans)
0