結果

問題 No.616 へんなソート
ユーザー pluto77pluto77
提出日時 2018-03-02 09:29:27
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-06-09 18:07:10
合計ジャッジ時間 7,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
80,116 KB
testcase_01 AC 91 ms
79,616 KB
testcase_02 AC 99 ms
79,744 KB
testcase_03 AC 108 ms
79,768 KB
testcase_04 AC 116 ms
80,512 KB
testcase_05 AC 81 ms
79,024 KB
testcase_06 AC 114 ms
80,408 KB
testcase_07 AC 98 ms
79,744 KB
testcase_08 AC 116 ms
79,804 KB
testcase_09 AC 123 ms
79,652 KB
testcase_10 AC 102 ms
80,512 KB
testcase_11 AC 121 ms
80,000 KB
testcase_12 AC 156 ms
80,428 KB
testcase_13 AC 283 ms
80,256 KB
testcase_14 AC 136 ms
80,072 KB
testcase_15 AC 101 ms
80,000 KB
testcase_16 AC 123 ms
80,520 KB
testcase_17 AC 275 ms
80,384 KB
testcase_18 AC 229 ms
80,000 KB
testcase_19 AC 220 ms
79,744 KB
testcase_20 AC 116 ms
79,744 KB
testcase_21 AC 136 ms
80,128 KB
testcase_22 AC 188 ms
79,744 KB
testcase_23 AC 82 ms
79,660 KB
testcase_24 AC 82 ms
78,976 KB
testcase_25 AC 80 ms
78,976 KB
testcase_26 AC 181 ms
80,384 KB
testcase_27 AC 178 ms
80,000 KB
testcase_28 AC 327 ms
80,768 KB
testcase_29 AC 335 ms
80,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki616

f=[0 for i in xrange(100001)]
s=[0 for i in xrange(100001)]
t=[0 for i in xrange(100001)]
mod=10**9+7
n,k=map(int,raw_input().split())
dmy=map(int,raw_input().split())
f[0]=1
for i in xrange(n):
 for j in xrange(100000):
  s[j+1]=(s[j]+f[j])%mod
  if j-i>=0:
   t[j]=(s[j+1]-s[j-i]+mod)%mod
  else:
   t[j]=(s[j+1]+mod)%mod
 f,t=t,f
res=0
for i in xrange(k+1):
 res+=f[i]
print res%mod
0