結果
問題 | No.152 貯金箱の消失 |
ユーザー | kuuso1 |
提出日時 | 2015-02-16 00:12:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 67 ms / 5,000 ms |
コード長 | 1,187 bytes |
コンパイル時間 | 876 ms |
コンパイル使用メモリ | 109,752 KB |
実行使用メモリ | 25,952 KB |
最終ジャッジ日時 | 2024-06-23 20:34:48 |
合計ジャッジ時間 | 1,861 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,852 KB |
testcase_01 | AC | 25 ms
23,888 KB |
testcase_02 | AC | 25 ms
23,728 KB |
testcase_03 | AC | 24 ms
23,648 KB |
testcase_04 | AC | 24 ms
24,020 KB |
testcase_05 | AC | 24 ms
25,936 KB |
testcase_06 | AC | 24 ms
23,980 KB |
testcase_07 | AC | 31 ms
25,928 KB |
testcase_08 | AC | 66 ms
23,768 KB |
testcase_09 | AC | 67 ms
23,636 KB |
testcase_10 | AC | 57 ms
23,984 KB |
testcase_11 | AC | 43 ms
25,952 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ L/=4; long mod=1000003; long cnt=0; for(long m=1;m*m*2+2*m<=L;m++){ for(long n=m-1;n>0;n--){ if((m-n)%2==0)continue; if(gcd(m,n)==1 && m*m*2+2*m*n<=L){ cnt++;cnt%=mod; //Console.WriteLine("{0},{1},{2}",m*m-n*n,2*m*n,m*m+n*n); } } } Console.WriteLine(cnt); } long gcd(long a,long b){ return a==0?b:gcd(b%a,a); } long L; public Sol(){ L=rl(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(){return Console.ReadLine().Split(' ');} static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));} static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));} static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));} }