結果
| 問題 |
No.2469 Umbrella Queries
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2023-10-12 00:57:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 281 ms / 2,000 ms |
| コード長 | 93 bytes |
| コンパイル時間 | 410 ms |
| コンパイル使用メモリ | 82,036 KB |
| 実行使用メモリ | 75,980 KB |
| 最終ジャッジ日時 | 2024-09-14 00:50:49 |
| 合計ジャッジ時間 | 1,492 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 |
ソースコード
for i in range(int(input())):
n = int(input())
print(0) if n%2 else print(n*(n//2-1))
rlangevin