結果

問題 No.152 貯金箱の消失
ユーザー te-shte-sh
提出日時 2017-04-14 13:53:46
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 103,196 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 18:44:03
合計ジャッジ時間 1,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.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!long;

  l /= 4;
  auto maxM = (l / 2).to!real.sqrt.to!long;

  auto r = 0;
  foreach (long m; 1..(l.to!real.sqrt.to!long + 1))
    for (long n = m % 2 + 1; n < m; n += 2) {
      if (2L * m * (m + n) > l) break;
      if (gcd(m, n) == 1) ++r;
    }

  writeln(r % p);
}
0