結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | hiro |
提出日時 | 2019-01-22 00:33:32 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 977 bytes |
コンパイル時間 | 3,481 ms |
コンパイル使用メモリ | 77,068 KB |
実行使用メモリ | 58,760 KB |
最終ジャッジ日時 | 2024-09-15 13:30:00 |
合計ジャッジ時間 | 10,150 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
42,128 KB |
testcase_01 | AC | 52 ms
36,548 KB |
testcase_02 | AC | 52 ms
36,264 KB |
testcase_03 | AC | 52 ms
36,952 KB |
testcase_04 | AC | 54 ms
36,604 KB |
testcase_05 | AC | 51 ms
36,668 KB |
testcase_06 | AC | 56 ms
36,588 KB |
testcase_07 | AC | 58 ms
36,908 KB |
testcase_08 | AC | 103 ms
37,500 KB |
testcase_09 | AC | 103 ms
37,244 KB |
testcase_10 | AC | 404 ms
37,416 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
package ycoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class CircleLatticePoint { public static void main(String... string) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] tmp = br.readLine().split(" "); int rMin = Integer.parseInt(tmp[0]); int rMax = Integer.parseInt(tmp[1]); CircleLatticePoint clp = new CircleLatticePoint(); int maxLatticePoint = 0; for(int r = rMin; r <= rMax; r++) { if(r == rMin) maxLatticePoint = clp.getLatticePoint(r); if(clp.getLatticePoint(r) > maxLatticePoint) { maxLatticePoint = clp.getLatticePoint(r); } } System.out.println(maxLatticePoint); } public int getLatticePoint(int r) { int result = 0; for(int x = 0; x <= Math.sqrt(r); x++) { for(int y = 0; y < Math.sqrt(r); y++) { if(r == x*x + y*y) { result++; } } } result = result * 4; return result; } }