結果
| 問題 |
No.1603 Manhattan Social Distance
|
| コンテスト | |
| ユーザー |
mesame3993
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 10 WA * 6 |
ソースコード
n, h, w = map(int, input().split()) ans = (n//2) * (n//2) * (h-1 + w-1) print(ans)
mesame3993