結果

問題 No.752 mod数列
ユーザー cielciel
提出日時 2020-02-08 19:27:51
言語 Crystal
(1.11.2)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 12,302 ms
コンパイル使用メモリ 298,328 KB
実行使用メモリ 19,936 KB
最終ジャッジ日時 2024-06-30 19:51:56
合計ジャッジ時間 17,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 12 ms
7,936 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 11 ms
7,296 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 13 ms
8,064 KB
testcase_15 AC 160 ms
6,940 KB
testcase_16 AC 168 ms
6,944 KB
testcase_17 AC 197 ms
19,936 KB
testcase_18 AC 174 ms
9,216 KB
testcase_19 AC 190 ms
9,472 KB
testcase_20 AC 207 ms
16,364 KB
testcase_21 AC 205 ms
16,392 KB
testcase_22 AC 204 ms
16,292 KB
testcase_23 AC 203 ms
15,572 KB
testcase_24 AC 206 ms
16,420 KB
testcase_25 AC 71 ms
12,800 KB
testcase_26 AC 169 ms
18,400 KB
testcase_27 AC 124 ms
12,416 KB
testcase_28 AC 159 ms
17,024 KB
testcase_29 AC 201 ms
17,012 KB
testcase_30 AC 212 ms
18,444 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 10 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M={0=>0_i64}
def c(o,n);M[n]||=c(o,0+(m=o//-~(o//n)))+(o%n+o%-~m)*(n-m)//2 end
o=gets.not_nil!.split[0].to_i64
ARGF.each_line{|e|l,r=e.split.map &.to_i;puts c(o,r)-c(o,l-1)}
0