結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー zazaboonzazaboon
提出日時 2024-10-18 22:17:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,579 ms / 2,500 ms
コード長 1,040 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 119,168 KB
最終ジャッジ日時 2024-10-18 22:49:26
合計ジャッジ時間 19,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
13,440 KB
testcase_01 AC 117 ms
13,312 KB
testcase_02 AC 115 ms
13,312 KB
testcase_03 AC 119 ms
13,056 KB
testcase_04 AC 118 ms
13,312 KB
testcase_05 AC 116 ms
13,056 KB
testcase_06 AC 115 ms
13,056 KB
testcase_07 AC 114 ms
13,184 KB
testcase_08 AC 114 ms
13,056 KB
testcase_09 AC 120 ms
13,568 KB
testcase_10 AC 115 ms
13,312 KB
testcase_11 AC 118 ms
13,312 KB
testcase_12 AC 120 ms
13,312 KB
testcase_13 AC 121 ms
13,440 KB
testcase_14 AC 120 ms
13,568 KB
testcase_15 AC 116 ms
13,312 KB
testcase_16 AC 1,158 ms
103,040 KB
testcase_17 AC 1,261 ms
107,776 KB
testcase_18 AC 1,448 ms
114,688 KB
testcase_19 AC 1,211 ms
103,808 KB
testcase_20 AC 980 ms
84,908 KB
testcase_21 AC 511 ms
44,160 KB
testcase_22 AC 546 ms
44,800 KB
testcase_23 AC 525 ms
44,160 KB
testcase_24 AC 1,471 ms
115,456 KB
testcase_25 AC 293 ms
26,368 KB
testcase_26 AC 115 ms
13,184 KB
testcase_27 AC 115 ms
13,056 KB
testcase_28 AC 116 ms
13,312 KB
testcase_29 AC 344 ms
46,592 KB
testcase_30 AC 469 ms
64,512 KB
testcase_31 AC 1,556 ms
119,168 KB
testcase_32 AC 1,579 ms
119,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:22: warning: assigned but unused variable - a
Main.rb:24: warning: assigned but unused variable - a
Main.rb:36: warning: assigned but unused variable - a
Main.rb:40: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

#solve atcoder problem
#exec({'RUBY_THREAD_VM_STACK_SIZE'=>'100000000'},'/usr/bin/ruby', $0) if !ENV['RUBY_THREAD_VM_STACK_SIZE']
#memo: (1..n).each do |d|
require 'prime'
require 'matrix'

def k2(k)
  return 1 if(k == 0)
  return $n if(k == 1)
  ans = 1
  if((k%2) == 0)
    ans *= k2(k/2)**2
  else
    ans *= k2(k-1)
    ans *= $n
  end
  return ans % $m
end

def k2b(n,k,m=1_000_000_007) $n=n;$m=m; return k2(k) end

def inpf() a=gets.chomp.split(" ").map(&:to_f)end

def inps() a=gets.chomp.split(" ")end

def copy(a) Marshal.load(Marshal.dump(a)) end

def kaijo(n,r = 10**9+7)(n < 2)? 1 : (2..n).inject{|memo,u|memo=(memo*u)%r} end

def na(n,d=0) Array.new(n,d)end

def na2(n,m,d=0) Array.new(n){Array.new(m,d)}end

def na3(n,m,l,d=0) Array.new(n){Array.new(m){Array.new(l,d)}}end

def inp() a=gets.chomp.split(" ").map(&:to_i)end

def r_up(a, b) (a+b-1)/b end

m,n = inp
x = inp + [m+1]
ans = 0
now = 0
x.each do |a|
  d = a-now-1
  ans += (d+1)*d*(2*d+1)/6
  now = a
  ans %= 998244353
end
puts ans

=begin
7 0
3 7 5 2 10 3 20

=end
0