結果

問題 No.152 貯金箱の消失
ユーザー kuuso1kuuso1
提出日時 2015-02-16 00:12:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 1,187 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 107,212 KB
実行使用メモリ 22,872 KB
最終ジャッジ日時 2023-09-06 01:30:15
合計ジャッジ時間 4,049 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,764 KB
testcase_01 AC 55 ms
20,656 KB
testcase_02 AC 57 ms
20,712 KB
testcase_03 AC 55 ms
20,656 KB
testcase_04 AC 55 ms
20,664 KB
testcase_05 AC 56 ms
18,660 KB
testcase_06 AC 56 ms
20,716 KB
testcase_07 AC 62 ms
22,808 KB
testcase_08 AC 99 ms
20,884 KB
testcase_09 AC 99 ms
22,872 KB
testcase_10 AC 89 ms
22,636 KB
testcase_11 AC 73 ms
20,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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));}
}
0