結果

問題 No.854 公平なりんご分配
ユーザー letrangerjpletrangerjp
提出日時 2019-07-26 22:11:18
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 540 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 822,656 KB
最終ジャッジ日時 2024-07-02 07:34:52
合計ジャッジ時間 39,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,288 KB
testcase_01 AC 98 ms
12,416 KB
testcase_02 AC 99 ms
12,288 KB
testcase_03 AC 99 ms
12,288 KB
testcase_04 AC 98 ms
12,288 KB
testcase_05 AC 101 ms
12,288 KB
testcase_06 AC 99 ms
12,416 KB
testcase_07 AC 99 ms
12,288 KB
testcase_08 AC 100 ms
12,288 KB
testcase_09 AC 99 ms
12,288 KB
testcase_10 AC 98 ms
12,288 KB
testcase_11 AC 100 ms
12,288 KB
testcase_12 AC 101 ms
12,416 KB
testcase_13 AC 100 ms
12,288 KB
testcase_14 AC 100 ms
12,416 KB
testcase_15 AC 101 ms
12,416 KB
testcase_16 AC 102 ms
12,416 KB
testcase_17 AC 99 ms
12,416 KB
testcase_18 AC 102 ms
12,288 KB
testcase_19 AC 101 ms
12,288 KB
testcase_20 AC 101 ms
12,416 KB
testcase_21 AC 100 ms
12,288 KB
testcase_22 AC 112 ms
12,800 KB
testcase_23 AC 110 ms
14,208 KB
testcase_24 AC 124 ms
17,536 KB
testcase_25 AC 107 ms
13,696 KB
testcase_26 AC 126 ms
18,176 KB
testcase_27 AC 118 ms
17,536 KB
testcase_28 AC 112 ms
12,672 KB
testcase_29 AC 104 ms
12,928 KB
testcase_30 AC 109 ms
13,568 KB
testcase_31 AC 126 ms
16,768 KB
testcase_32 AC 625 ms
297,716 KB
testcase_33 AC 515 ms
157,056 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 AC 296 ms
24,704 KB
testcase_37 AC 597 ms
275,564 KB
testcase_38 AC 473 ms
222,308 KB
testcase_39 MLE -
testcase_40 AC 501 ms
134,364 KB
testcase_41 AC 702 ms
256,612 KB
testcase_42 MLE -
testcase_43 AC 839 ms
271,300 KB
testcase_44 MLE -
testcase_45 AC 548 ms
70,400 KB
testcase_46 MLE -
testcase_47 AC 592 ms
205,032 KB
testcase_48 MLE -
testcase_49 MLE -
testcase_50 AC 589 ms
271,848 KB
testcase_51 MLE -
testcase_52 AC 606 ms
170,368 KB
testcase_53 AC 456 ms
162,176 KB
testcase_54 AC 651 ms
200,576 KB
testcase_55 AC 382 ms
164,736 KB
testcase_56 AC 390 ms
170,496 KB
testcase_57 AC 447 ms
137,700 KB
testcase_58 AC 490 ms
57,728 KB
testcase_59 AC 300 ms
118,656 KB
testcase_60 AC 484 ms
140,388 KB
testcase_61 AC 227 ms
25,472 KB
testcase_62 AC 512 ms
119,296 KB
testcase_63 AC 424 ms
123,612 KB
testcase_64 AC 209 ms
41,216 KB
testcase_65 MLE -
testcase_66 AC 347 ms
86,144 KB
testcase_67 AC 641 ms
225,904 KB
testcase_68 AC 440 ms
93,440 KB
testcase_69 MLE -
testcase_70 AC 324 ms
132,096 KB
testcase_71 AC 386 ms
148,696 KB
testcase_72 AC 342 ms
25,600 KB
testcase_73 AC 590 ms
282,440 KB
testcase_74 MLE -
testcase_75 AC 469 ms
150,116 KB
testcase_76 AC 623 ms
268,796 KB
testcase_77 MLE -
testcase_78 AC 565 ms
109,696 KB
testcase_79 AC 709 ms
234,876 KB
testcase_80 AC 690 ms
245,840 KB
testcase_81 AC 583 ms
255,464 KB
testcase_82 MLE -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

$memo = { 0 => [[0, 1]] }
def f(n)
  $memo[n] ||= n.prime_division
end

P = 10**9+7

N = gets.to_i
A = gets.split.map &:to_i
Q = gets.to_i
PLR = $<.map{|s|
  s.split.map &:to_i
}

$cusum = [primes = Hash.new(0)] + A.map{|a|
  primes = primes.dup
  f(a).each{|k, v|
    primes[k] += v
  }
  primes
}

PLR.each{|p, l, r|
  # p f(p)
  # puts [$cusum[r], $cusum[l-1]]
  if $cusum[r][0] - $cusum[l-1][0] > 0
    puts "Yes"
  elsif f(p).all?{|k, v| $cusum[r][k] - $cusum[l-1][k] >= v }
    puts "Yes"
  else
    puts "NO"
  end
}
0