結果

問題 No.688 E869120 and Constructing Array 2
ユーザー finefine
提出日時 2018-05-18 22:30:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 473 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-07 13:23:38
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 76 ms
12,160 KB
testcase_02 AC 75 ms
12,032 KB
testcase_03 AC 75 ms
12,032 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 78 ms
12,032 KB
testcase_07 AC 76 ms
12,032 KB
testcase_08 AC 78 ms
12,032 KB
testcase_09 AC 77 ms
12,032 KB
testcase_10 AC 75 ms
12,032 KB
testcase_11 AC 78 ms
12,032 KB
testcase_12 AC 75 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

k = gets.to_i
if k == 0
    puts 1
    puts "0"
    exit
end
2.upto(30) do |i|
    hoge = i * (i - 1) / 2
    if k % hoge != 0
        next
    end
    cnt = 0
    tmp = k / hoge
    while tmp % 2 == 0
        cnt += 1
        tmp /= 2
    end
    if tmp == 1 && cnt + i <= 30
        puts cnt + i
        a = []
        cnt.times do 
            a.push(0)
        end
        i.times do 
            a.push(1)
        end
        puts a.join(' ')
        break
    end
end
0