結果

問題 No.800 四平方定理
ユーザー tailstails
提出日時 2020-09-03 18:03:55
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,728 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 7,204 KB
実行使用メモリ 97,024 KB
最終ジャッジ日時 2024-11-23 20:20:52
合計ジャッジ時間 23,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,912 KB
testcase_01 AC 25 ms
8,192 KB
testcase_02 AC 20 ms
7,424 KB
testcase_03 AC 21 ms
7,424 KB
testcase_04 AC 19 ms
7,296 KB
testcase_05 AC 22 ms
7,552 KB
testcase_06 AC 27 ms
8,320 KB
testcase_07 AC 28 ms
7,680 KB
testcase_08 AC 34 ms
8,320 KB
testcase_09 AC 24 ms
7,936 KB
testcase_10 AC 762 ms
56,648 KB
testcase_11 AC 779 ms
58,368 KB
testcase_12 AC 823 ms
57,984 KB
testcase_13 AC 690 ms
57,340 KB
testcase_14 AC 716 ms
58,240 KB
testcase_15 AC 861 ms
58,312 KB
testcase_16 AC 731 ms
58,496 KB
testcase_17 AC 762 ms
58,488 KB
testcase_18 AC 928 ms
58,240 KB
testcase_19 AC 913 ms
58,624 KB
testcase_20 AC 7 ms
5,888 KB
testcase_21 AC 7 ms
6,144 KB
testcase_22 AC 955 ms
58,404 KB
testcase_23 AC 1,728 ms
96,980 KB
testcase_24 AC 1,403 ms
97,024 KB
testcase_25 AC 1,721 ms
96,964 KB
testcase_26 AC 7 ms
6,016 KB
testcase_27 AC 7 ms
5,888 KB
testcase_28 AC 1,428 ms
96,980 KB
testcase_29 AC 1,564 ms
97,024 KB
testcase_30 AC 1,449 ms
97,024 KB
testcase_31 AC 1,295 ms
95,104 KB
testcase_32 AC 1,508 ms
97,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$d)=glob<>;
for$x(1..$n){
	for$y(1..$n){
		++$a[$x*$x+$y*$y];
	}
}
for$w(1..$n){
	for$z(1..$n){
		$e=$w*$w-$z*$z+$d;
		last if $e<0;
		$r+=$a[$e];
	}
}
print$r
0