結果
問題 | No.152 貯金箱の消失 |
ユーザー | 37zigen |
提出日時 | 2016-05-02 02:23:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 851 bytes |
コンパイル時間 | 2,554 ms |
コンパイル使用メモリ | 79,100 KB |
実行使用メモリ | 64,936 KB |
最終ジャッジ日時 | 2024-10-05 01:50:50 |
合計ジャッジ時間 | 7,764 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 104 ms
52,920 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class Main{ public static void main(String[] args)throws Exception{ new Main().solve(); } int mod=1000003; void solve(){ Scanner sc=new Scanner(System.in); int l=sc.nextInt(); l=l/4; int count=0; bi:for(int i=1;;i++){ for(int j=i+1;;j++){ long gcd=GCD(i,j); if(gcd!=1)continue; if(j%2==1&&i%2==1)continue; if(2*i*j+2*j*j>l){ if(j==i+1)break bi; else break; } System.out.println(2*i*j+" "+(j*j-i*i)+" "+(2*i*j)*(2*i*j)+(j*j-i*i)*(j*j-i*i)); count++; count%=mod; } } System.out.println(count); } long LCM(long t1,long t2){ long a=GCD(t1,t2); long tt1=t1/a; long tt2=t2/a; return tt1*tt2*a; } long GCD(long t1,long t2){ if(t1<t2){ long d=t2; t2=t1; t1=d; } if(t2==0)return t1; return GCD(t2,t1%t2); } }