結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | mai |
提出日時 | 2019-01-11 23:42:03 |
言語 | cLay (20240714-1) |
結果 |
WA
|
実行時間 | - |
コード長 | 224 bytes |
コンパイル時間 | 1,975 ms |
コンパイル使用メモリ | 172,540 KB |
実行使用メモリ | 83,328 KB |
最終ジャッジ日時 | 2024-07-05 13:17:30 |
合計ジャッジ時間 | 6,891 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
ll h; int dist(ll x, ll y){ return x*x+y*y; } ll m[10000010],X,Y; { int X,Y,best=0; rd(X,Y); h = float(sqrt(Y))+1; REP(i,h) REP(j,h) m[dist(i,j)]++; REP(i,X,Y+1) best=max(best,m[i]); wt(best); }