結果

問題 No.152 貯金箱の消失
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-28 02:07:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 555 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 75,460 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-25 06:18:19
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,088 KB
testcase_01 AC 122 ms
53,952 KB
testcase_02 AC 128 ms
54,392 KB
testcase_03 AC 113 ms
52,664 KB
testcase_04 AC 128 ms
54,076 KB
testcase_05 AC 117 ms
52,876 KB
testcase_06 AC 133 ms
54,248 KB
testcase_07 AC 144 ms
54,080 KB
testcase_08 AC 188 ms
54,128 KB
testcase_09 AC 179 ms
54,120 KB
testcase_10 AC 160 ms
52,984 KB
testcase_11 AC 148 ms
53,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long l = sc.nextLong();
    long ans = 0;
    long MOD = 1000003;
    for(long a = 2; (a * a * 8) < l; a++) {
      for(long b = 1; b < a; b++) {
        if((8 * a * a + 8 * a * b) <= l) {
          if((gcd(a, b) == 1) && (((a - b) % 2) == 1)) ans = (ans + 1) % MOD;
        }
      }
    }
    System.out.println(ans);
  }

  public static long gcd(long x, long y) {
    if(y == 0) return x;
    return gcd(y, (x % y));
  }
}
0