結果

問題 No.83 最大マッチング
ユーザー zazaboonzazaboon
提出日時 2016-05-02 13:03:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 166 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 41,120 KB
最終ジャッジ日時 2024-04-15 09:10:59
合計ジャッジ時間 7,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 92 ms
12,288 KB
testcase_03 AC 90 ms
12,032 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 94 ms
12,288 KB
testcase_06 AC 91 ms
12,032 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 212 ms
17,280 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

num = gets.to_i
if num >= 2
  ans = (10 ** ((num / 2) - 1)) * (7 ** (num % 2))
  for i in 0..((num / 2) - 2)
    ans += 10 ** i
  end
else
  puts "eroor"
end
puts ans
0