結果
問題 | No.1232 2^x = x |
ユーザー | shi-mo |
提出日時 | 2020-09-29 22:16:36 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 309 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,672 KB |
最終ジャッジ日時 | 2024-07-04 14:19:41 |
合計ジャッジ時間 | 2,103 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,288 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
MAX = 10**18 MAX_POW = MAX.to_s(2).length - 1 POW2 = [] 1.upto(MAX_POW){|i| POW2 << 2 ** i } def solve(p) candidates = POW2.dup POW2.each{|x| candidates << x%p } candidates.sort! candidates.each do |x| return x if 2.pow(x,p) == x%p end '-1' end n = gets.to_i n.times{ puts solve(gets.to_i) }