結果
| 問題 | No.1824 門\松\列 |
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2024-07-17 10:18:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 734 ms / 2,000 ms |
| コード長 | 189 bytes |
| 記録 | |
| コンパイル時間 | 645 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 69,348 KB |
| 最終ジャッジ日時 | 2026-04-01 01:04:21 |
| 合計ジャッジ時間 | 5,430 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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