結果

問題 No.752 mod数列
ユーザー cielciel
提出日時 2018-11-11 09:45:27
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 142 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-05-06 10:18:03
合計ジャッジ時間 9,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,416 KB
testcase_01 AC 85 ms
12,416 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 81 ms
12,416 KB
testcase_04 AC 79 ms
12,032 KB
testcase_05 AC 82 ms
12,416 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 83 ms
12,544 KB
testcase_08 AC 85 ms
12,416 KB
testcase_09 AC 82 ms
12,288 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 546 ms
12,288 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 587 ms
18,176 KB
testcase_19 AC 613 ms
19,328 KB
testcase_20 AC 673 ms
22,912 KB
testcase_21 AC 656 ms
22,912 KB
testcase_22 AC 683 ms
22,784 KB
testcase_23 AC 673 ms
23,552 KB
testcase_24 AC 671 ms
23,168 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,288 KB
testcase_32 AC 78 ms
12,160 KB
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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