結果

問題 No.1824 門\松\列
ユーザー vwxyzvwxyz
提出日時 2024-07-17 10:18:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 961 ms
65,440 KB
testcase_01 AC 959 ms
65,616 KB
testcase_02 AC 957 ms
65,500 KB
testcase_03 AC 1,032 ms
65,516 KB
testcase_04 AC 940 ms
65,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0