結果

問題 No.752 mod数列
ユーザー cielciel
提出日時 2018-11-11 09:12:16
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 151 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-05-06 05:04:51
合計ジャッジ時間 10,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,544 KB
testcase_01 AC 78 ms
12,544 KB
testcase_02 AC 76 ms
12,544 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 76 ms
12,416 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 76 ms
12,672 KB
testcase_08 AC 75 ms
12,544 KB
testcase_09 AC 76 ms
12,672 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 542 ms
12,672 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 555 ms
18,432 KB
testcase_19 AC 579 ms
19,584 KB
testcase_20 AC 624 ms
23,040 KB
testcase_21 AC 640 ms
23,040 KB
testcase_22 AC 661 ms
23,040 KB
testcase_23 AC 685 ms
23,424 KB
testcase_24 AC 644 ms
23,040 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 77 ms
12,032 KB
testcase_32 AC 75 ms
12,288 KB
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M={0=>0}
def K(o,n)
M[n]||=K(o,-1+x=o/(o/n+1)+1)+(o%n+o%x)*(n-x+1)/2
end
o,q=gets.split.map &:to_i
q.times{l,r=gets.split.map &:to_i;p K(o,r)-K(o,l-1)}
0