結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます
コンパイルメッセージ
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