結果
| 問題 |
No.1824 門\松\列
|
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2024-07-17 10:18:16 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 1,032 ms / 2,000 ms |
| コード長 | 189 bytes |
| コンパイル時間 | 156 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 65,616 KB |
| 最終ジャッジ日時 | 2024-07-17 10:18:25 |
| 合計ジャッジ時間 | 6,628 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 4 |
ソースコード
imos=[0]*(10**6+1)
imos[3]=4
for _ in range(4):
for i in range(1,10**6+1):
imos[i]+=imos[i-1]
T=int(input())
for t in range(T):
N=int(input())
ans=imos[N]
print(ans)
vwxyz