結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | iicafiaxus |
提出日時 | 2019-01-11 22:33:40 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1,016 ms / 2,000 ms |
コード長 | 774 bytes |
コンパイル時間 | 1,104 ms |
コンパイル使用メモリ | 125,316 KB |
実行使用メモリ | 113,120 KB |
最終ジャッジ日時 | 2024-06-13 02:39:38 |
合計ジャッジ時間 | 8,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,940 KB |
testcase_07 | AC | 11 ms
6,944 KB |
testcase_08 | AC | 1,000 ms
113,120 KB |
testcase_09 | AC | 999 ms
113,080 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 1,016 ms
112,944 KB |
testcase_13 | AC | 1,010 ms
113,076 KB |
testcase_14 | AC | 50 ms
8,320 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 596 ms
61,932 KB |
testcase_18 | AC | 580 ms
61,928 KB |
testcase_19 | AC | 599 ms
63,132 KB |
testcase_20 | AC | 584 ms
63,136 KB |
ソースコード
import std.stdio, std.conv, std.string, std.bigint; import std.math, std.random, std.datetime; import std.array, std.range, std.algorithm, std.container, std.format; string read(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; } void main(){ int x = read.to!int; int y = read.to!int; int[] qs; for(int a = 0; a <= y; a ++){ qs ~= a * a; } int[] count; for(int r = 0; r <= y; r ++){ count ~= 0; } int bmax = y; for(int a = 0; qs[a] <= y; a ++){ int r; for(int b = 1; qs[b] <= y; b ++){ r = qs[a] + qs[b]; if(r > y) break; count[r] += 1; } } int countmax = 0; for(int r = x; r <= y; r ++){ if(count[r] > countmax) countmax = count[r]; } (countmax * 4).writeln; }