結果

問題 No.793 うし数列 2
ユーザー simansiman
提出日時 2019-02-22 21:48:58
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 25,928 KB
最終ジャッジ日時 2024-11-25 07:21:04
合計ジャッジ時間 41,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
19,104 KB
testcase_01 AC 81 ms
24,192 KB
testcase_02 AC 77 ms
18,976 KB
testcase_03 AC 75 ms
24,448 KB
testcase_04 AC 75 ms
18,980 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 133 ms
24,576 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
MOD = 10 ** 9 + 7

n = 3
base = 3

(1..N).each do |i|
  if i == N
    base = (base * 10 / 3) % MOD
  else
    base = (base * 10) % MOD
  end

  n = (n + base) % MOD
end

puts(n % MOD)
0