結果

問題 No.152 貯金箱の消失
ユーザー GrenacheGrenache
提出日時 2016-02-13 01:17:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 351 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 75,348 KB
実行使用メモリ 54,416 KB
最終ジャッジ日時 2024-09-22 05:23:29
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,080 KB
testcase_01 AC 129 ms
54,220 KB
testcase_02 AC 127 ms
54,024 KB
testcase_03 AC 130 ms
54,292 KB
testcase_04 AC 133 ms
54,068 KB
testcase_05 AC 134 ms
54,100 KB
testcase_06 AC 139 ms
54,216 KB
testcase_07 AC 168 ms
54,352 KB
testcase_08 AC 350 ms
54,296 KB
testcase_09 AC 351 ms
54,020 KB
testcase_10 AC 304 ms
54,120 KB
testcase_11 AC 225 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder152 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int l = sc.nextInt();

        int ret = 0;
        for (int n = 1; n * n < l; n++) {
        	for (int m = n + 1; m * m < l; m += 2) {
        		if (gcd(n, m) != 1) {
        			continue;
        		}

        		int tmp = m * (m + n) * 2;
        		if (tmp * 4 <= l) {
        			ret ++;
        		}
        	}
        }

        System.out.println(ret);

        sc.close();
    }

	private static int gcd(int n, int m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}
}
0