結果

問題 No.2324 Two Countries within UEC
ユーザー simansiman
提出日時 2023-06-06 18:43:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-26 23:37:04
合計ジャッジ時間 14,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 588 ms
12,160 KB
testcase_01 AC 506 ms
12,416 KB
testcase_02 AC 136 ms
12,288 KB
testcase_03 AC 343 ms
12,160 KB
testcase_04 AC 538 ms
12,416 KB
testcase_05 AC 177 ms
12,544 KB
testcase_06 AC 273 ms
12,288 KB
testcase_07 AC 147 ms
12,288 KB
testcase_08 AC 505 ms
12,416 KB
testcase_09 AC 500 ms
12,544 KB
testcase_10 AC 415 ms
12,160 KB
testcase_11 AC 620 ms
12,416 KB
testcase_12 AC 244 ms
12,288 KB
testcase_13 AC 228 ms
12,416 KB
testcase_14 AC 135 ms
12,416 KB
testcase_15 AC 167 ms
12,416 KB
testcase_16 AC 310 ms
12,544 KB
testcase_17 AC 259 ms
12,416 KB
testcase_18 AC 184 ms
12,288 KB
testcase_19 AC 392 ms
12,416 KB
testcase_20 AC 156 ms
12,416 KB
testcase_21 AC 464 ms
12,288 KB
testcase_22 AC 523 ms
12,416 KB
testcase_23 AC 237 ms
12,288 KB
testcase_24 AC 514 ms
12,416 KB
testcase_25 AC 474 ms
12,288 KB
testcase_26 AC 286 ms
12,416 KB
testcase_27 AC 292 ms
12,288 KB
testcase_28 AC 290 ms
12,288 KB
testcase_29 AC 296 ms
12,288 KB
testcase_30 AC 290 ms
12,288 KB
testcase_31 AC 82 ms
12,288 KB
testcase_32 AC 83 ms
12,160 KB
testcase_33 AC 80 ms
12,032 KB
testcase_34 AC 82 ms
12,160 KB
testcase_35 AC 83 ms
12,288 KB
testcase_36 AC 81 ms
12,160 KB
testcase_37 AC 81 ms
12,288 KB
testcase_38 AC 82 ms
12,288 KB
testcase_39 AC 83 ms
12,288 KB
testcase_40 AC 80 ms
12,032 KB
testcase_41 AC 81 ms
12,032 KB
testcase_42 AC 80 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - ans
Syntax OK

ソースコード

diff #

N, M, P, Q = gets.split.map(&:to_i)

ans = 0

Q.times do
  x, f = gets.split.map(&:to_i)

  if x % P == 0
    if f == 0
      puts M
    else
      puts 0
    end
  else
    t = f * x.pow(P - 2, P) % P

    if t == 0
      if P > M
        puts 0
      else
        ok = 1
        ng = M + 1

        while (ok - ng).abs >= 2
          k = (ok + ng) / 2

          if P * k <= M
            ok = k
          else
            ng = k
          end
        end

        puts ok
      end
    else
      if t > M
        puts 0
      else
        ok = 1
        ng = M + 2

        while (ok - ng).abs >= 2
          k = (ok + ng) / 2

          if P * (k - 1) + t <= M
            ok = k
          else
            ng = k
          end
        end

        puts ok
      end
    end
  end
end
0