結果

問題 No.701 ひとりしりとり
ユーザー finefine
提出日時 2018-06-15 22:30:03
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 251 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-30 15:02:40
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 83 ms
12,032 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 80 ms
12,288 KB
testcase_05 AC 82 ms
12,288 KB
testcase_06 AC 81 ms
12,160 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 93 ms
12,288 KB
testcase_09 AC 104 ms
12,288 KB
testcase_10 AC 299 ms
12,416 KB
testcase_11 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: assigned but unused variable - foo
Syntax OK

ソースコード

diff #

def hoge() 
    s = ""
    18.times do
        s += (rand(26) + ?a.ord).chr
    end
    return s
end

n = gets.to_i
n.times do |i|
    foo = hoge()
    if i + 1 == n
        puts "a" + hoge() + "n"
    else
        puts "a" + hoge() + "a"
    end
end
0