結果

問題 No.152 貯金箱の消失
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-04 07:16:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-05-05 19:15:15
合計ジャッジ時間 3,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,036 KB
testcase_01 AC 113 ms
41,180 KB
testcase_02 AC 105 ms
40,144 KB
testcase_03 AC 115 ms
41,180 KB
testcase_04 AC 107 ms
40,972 KB
testcase_05 AC 108 ms
41,128 KB
testcase_06 AC 105 ms
40,212 KB
testcase_07 AC 119 ms
41,212 KB
testcase_08 AC 147 ms
41,036 KB
testcase_09 AC 143 ms
40,812 KB
testcase_10 AC 143 ms
41,156 KB
testcase_11 AC 133 ms
40,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int num=0;
        int L = sc.nextInt();
        L/=4;
        int rt = (int)Math.sqrt(L/2);
        for(int m=2; m<=rt; m++){
            for(int n=1; n<m; n++){
                if((m-n)%2==1){
                    int t =gcd(m,n);
                    if(t==1){
                        int a=m*m-n*n;
                        int b=2*m*n;
                        int c=m*m+n*n;
                        if( (a+b+c)<=L){
                            num++;
                        }
                    }
                }
            }
        }
        System.out.println(num);
    }
    static int gcd(int a, int b){
        while(a%b!=0){
            int t=b;
            b=a%b;
            a=t;
        }
        return b;
    }
}
0