結果

問題 No.1603 Manhattan Social Distance
ユーザー mesame3993mesame3993
提出日時 2021-10-06 11:24:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 82 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 53,656 KB
最終ジャッジ日時 2024-07-23 02:45:58
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,836 KB
testcase_02 AC 37 ms
52,128 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 37 ms
52,932 KB
testcase_05 AC 36 ms
52,860 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
51,856 KB
testcase_09 AC 36 ms
52,464 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 36 ms
52,376 KB
testcase_14 AC 37 ms
52,388 KB
testcase_15 AC 37 ms
52,416 KB
testcase_16 WA -
testcase_17 AC 37 ms
52,312 KB
testcase_18 AC 37 ms
52,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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