結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | kps |
提出日時 | 2021-12-06 23:37:29 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 304 ms / 2,000 ms |
コード長 | 913 bytes |
コンパイル時間 | 1,822 ms |
コンパイル使用メモリ | 74,516 KB |
実行使用メモリ | 96,132 KB |
最終ジャッジ日時 | 2024-07-07 09:49:57 |
合計ジャッジ時間 | 6,077 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
54,208 KB |
testcase_01 | AC | 97 ms
52,912 KB |
testcase_02 | AC | 98 ms
52,888 KB |
testcase_03 | AC | 103 ms
52,328 KB |
testcase_04 | AC | 96 ms
52,984 KB |
testcase_05 | AC | 107 ms
54,136 KB |
testcase_06 | AC | 105 ms
52,696 KB |
testcase_07 | AC | 115 ms
54,236 KB |
testcase_08 | AC | 293 ms
95,708 KB |
testcase_09 | AC | 302 ms
96,132 KB |
testcase_10 | AC | 97 ms
52,588 KB |
testcase_11 | AC | 113 ms
53,856 KB |
testcase_12 | AC | 290 ms
95,804 KB |
testcase_13 | AC | 304 ms
94,896 KB |
testcase_14 | AC | 107 ms
55,328 KB |
testcase_15 | AC | 109 ms
53,840 KB |
testcase_16 | AC | 110 ms
53,856 KB |
testcase_17 | AC | 197 ms
79,404 KB |
testcase_18 | AC | 187 ms
79,640 KB |
testcase_19 | AC | 205 ms
78,812 KB |
testcase_20 | AC | 198 ms
79,116 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); //原点を中心とする半径maxR以下の円それぞれの円周上にある格子点を数え上げるプログラム //計算量:O(maxR*maxR) int X=sc.nextInt(),Y=sc.nextInt(); int maxR=(int)Math.sqrt(Y); int counter[]=new int[Y+1]; //counter[i]:半径√iの円の円周上にある格子点の数,ex:counter[4]は半径2の円の答え for(int x=-maxR;x<=maxR;x++) { for(int y=-maxR;y<=maxR;y++) { //(x,y)が半径Rの円の円周上にある⇔x^2+y^2=R^2 if(x*x+y*y>Y)continue; counter[x*x+y*y]++; } } int ans=0; for(int i=X;i<=Y;i++) { ans=Math.max(ans, counter[i]); //System.out.println("半径√iの円の答え:"+counter[i]); } System.out.println(ans); } }