結果
問題 | No.413 +5,000,000pts |
ユーザー | snrnsidy |
提出日時 | 2021-05-27 01:18:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 317 bytes |
コンパイル時間 | 2,190 ms |
コンパイル使用メモリ | 208,788 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 19:14:55 |
合計ジャッジ時間 | 2,655 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ソースコード
#pragma GCC optimize("O3") #include <bits/stdc++.h> using namespace std; typedef long long ll; ll calc(ll d) { return (ll)((-1 + sqrt(1 + 4*d)) / 2.0); } int main(void) { cin.tie(NULL); ios::sync_with_stdio(false); long long int D = 1e9; for(int i=0;i<100000;i++) { cout << D-i << '\n'; } return 0; }