結果

問題 No.1137 Circles
ユーザー 👑 hos.lyrichos.lyric
提出日時 2020-07-30 02:12:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-07-01 02:52:16
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
24,576 KB
testcase_01 AC 312 ms
24,576 KB
testcase_02 AC 183 ms
24,448 KB
testcase_03 AC 246 ms
24,576 KB
testcase_04 AC 268 ms
24,448 KB
testcase_05 AC 198 ms
24,448 KB
testcase_06 AC 283 ms
24,448 KB
testcase_07 AC 226 ms
24,448 KB
testcase_08 AC 286 ms
24,576 KB
testcase_09 AC 211 ms
24,448 KB
testcase_10 AC 237 ms
24,320 KB
testcase_11 AC 244 ms
24,320 KB
testcase_12 AC 327 ms
24,448 KB
testcase_13 AC 219 ms
24,576 KB
testcase_14 AC 309 ms
24,448 KB
testcase_15 AC 228 ms
24,448 KB
testcase_16 AC 246 ms
24,576 KB
testcase_17 AC 192 ms
24,448 KB
testcase_18 AC 288 ms
24,448 KB
testcase_19 AC 219 ms
24,576 KB
testcase_20 AC 211 ms
24,448 KB
testcase_21 AC 176 ms
24,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

m=9**6
f=[g=z=0]*m*2
gets
$<.map{|s|x,r=s.split.map &:to_i;f[m+x-r]+=1;f[m+x+r]-=1;}
f.each{|t|g+=t;z<g&&z=g}
p z
0