結果

問題 No.152 貯金箱の消失
ユーザー te-shte-sh
提出日時 2017-02-02 15:56:18
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 93,148 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-03 01:17:45
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/dmd2/linux/bin64/../../src/phobos/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!uint.gcdImpl`

ソースコード

diff #

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);
}
0