結果

問題 No.537 ユーザーID
ユーザー object1234object1234
提出日時 2019-01-19 20:48:12
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,356 KB
最終ジャッジ日時 2024-07-18 08:32:43
合計ジャッジ時間 5,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
19,232 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 80 ms
12,416 KB
testcase_05 AC 142 ms
12,416 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 138 ms
12,288 KB
testcase_08 AC 170 ms
12,160 KB
testcase_09 AC 77 ms
12,288 KB
testcase_10 AC 75 ms
12,416 KB
testcase_11 AC 72 ms
12,416 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 220 ms
12,288 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def build_str(i,j)
    res = []
    a = [i,j].sort
    res << "#{a[0]}#{a[1]}"
    res << "#{a[1]}#{a[0]}"
    res
end
res = []
max = gets.chomp.to_i
(1..max).each do |i|
    (1..max).each do |j|
        if i * j == max
            strs = build_str(i,j)
            strs.each do |s|
                if not res.include?(s)
                    res << s
                end
            end
        end
    end
end

puts res.length
0