結果

問題 No.129 お年玉(2)
ユーザー 👑 obakyanobakyan
提出日時 2020-04-11 23:09:17
言語 Lua
(LuaJit 2.1.1696795921)
結果
MLE  
実行時間 -
コード長 346 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 612,864 KB
最終ジャッジ日時 2024-09-19 16:01:28
合計ジャッジ時間 20,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
31,232 KB
testcase_01 MLE -
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 353 ms
250,880 KB
testcase_06 AC 522 ms
364,416 KB
testcase_07 AC 668 ms
470,912 KB
testcase_08 AC 445 ms
316,800 KB
testcase_09 AC 604 ms
422,400 KB
testcase_10 AC 700 ms
492,160 KB
testcase_11 AC 430 ms
306,176 KB
testcase_12 AC 546 ms
380,416 KB
testcase_13 AC 582 ms
405,760 KB
testcase_14 AC 555 ms
386,304 KB
testcase_15 AC 463 ms
327,040 KB
testcase_16 AC 521 ms
361,472 KB
testcase_17 AC 723 ms
459,264 KB
testcase_18 AC 612 ms
424,576 KB
testcase_19 AC 661 ms
462,464 KB
testcase_20 AC 659 ms
457,728 KB
testcase_21 MLE -
testcase_22 AC 453 ms
319,616 KB
testcase_23 AC 726 ms
510,848 KB
testcase_24 AC 698 ms
486,016 KB
testcase_25 AC 436 ms
307,712 KB
testcase_26 AC 448 ms
313,728 KB
testcase_27 AC 435 ms
306,176 KB
testcase_28 MLE -
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,948 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 7 ms
6,944 KB
testcase_36 AC 8 ms
6,944 KB
testcase_37 AC 9 ms
7,168 KB
testcase_38 AC 93 ms
65,792 KB
testcase_39 AC 132 ms
92,672 KB
testcase_40 AC 412 ms
289,536 KB
testcase_41 AC 260 ms
183,936 KB
testcase_42 AC 103 ms
73,344 KB
testcase_43 AC 102 ms
72,192 KB
testcase_44 MLE -
testcase_45 AC 61 ms
42,112 KB
testcase_46 AC 152 ms
108,160 KB
testcase_47 MLE -
testcase_48 AC 472 ms
330,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read()
if #n <= 3 then
  n = 0
else
  n = n:sub(1, #n - 3)
  n = tonumber(n)
end
local m = io.read("*n")
local mod = 1000000000
n = n % m
local t = {{1}}
for i = 1, m do
  t[i + 1] = {}
  t[i + 1][1] = 1
  for j = 1, i - 1 do
    t[i + 1][j + 1] = (t[i][j] + t[i][j + 1]) % mod
  end
  t[i + 1][i + 1] = 1
end
print(t[m + 1][n + 1])
0