結果
| 問題 | No.413 +5,000,000pts |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-17 15:10:27 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 698 ms |
| コンパイル使用メモリ | 84,736 KB |
| 実行使用メモリ | 64,768 KB |
| 最終ジャッジ日時 | 2026-04-04 19:03:50 |
| 合計ジャッジ時間 | 14,142 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 |
ソースコード
from math import sqrt
ans = []
d = 2
while len(ans) < 10 ** 5:
t = int((-1 + sqrt(1 + 4 * d))/2)
if (t + 1) * (t + 2) <= d:
ans.append(d)
d += 1
print(*ans,sep = "\n")