結果
| 問題 |
No.152 貯金箱の消失
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-02-02 15:56:18 |
| 言語 | D (dmd 2.109.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 438 bytes |
| コンパイル時間 | 1,016 ms |
| コンパイル使用メモリ | 103,680 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-12 06:51:54 |
| 合計ジャッジ時間 | 1,614 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 8 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!uint.gcdImpl`
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.math; // math functions
import std.numeric; // gcd
const auto p = 1000003;
void main()
{
auto l = readln.chomp.to!int;
l /= 4;
auto maxM = (l / 2).to!real.sqrt.to!int;
auto r = 0;
foreach (m; iota(2, maxM + 1))
foreach (n; iota(1, m, 2)) {
if (2 * m * (m + n) > l) break;
if (gcd(m, n) == 1) ++r;
}
writeln(r % p);
}