結果
問題 | No.413 +5,000,000pts |
ユーザー | ああいい |
提出日時 | 2022-05-17 15:10:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 68,992 KB |
最終ジャッジ日時 | 2024-09-15 09:46:53 |
合計ジャッジ時間 | 13,611 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
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")