結果
問題 | No.413 +5,000,000pts |
ユーザー | te-sh |
提出日時 | 2017-10-26 10:12:13 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 277 bytes |
コンパイル時間 | 691 ms |
コンパイル使用メモリ | 95,296 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-12 22:07:11 |
合計ジャッジ時間 | 1,044 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.math; // math functions void main() { auto c = 0; foreach_reverse (i; 1..10L^^9) { auto k = i*2+1; auto d = (k^^2-1)/4-1; writeln(d); ++c; if (c == 100000) return; } }