結果

問題 No.719 Coprime
ユーザー koi_kotyakoi_kotya
提出日時 2018-07-27 23:59:48
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-05 16:33:35
合計ジャッジ時間 6,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 73 ms
12,288 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 72 ms
12,032 KB
testcase_05 AC 72 ms
12,160 KB
testcase_06 AC 72 ms
12,160 KB
testcase_07 AC 72 ms
12,032 KB
testcase_08 AC 72 ms
12,032 KB
testcase_09 AC 72 ms
12,160 KB
testcase_10 AC 73 ms
12,032 KB
testcase_11 AC 71 ms
12,288 KB
testcase_12 AC 72 ms
12,160 KB
testcase_13 AC 72 ms
12,160 KB
testcase_14 AC 72 ms
12,160 KB
testcase_15 AC 72 ms
12,160 KB
testcase_16 AC 71 ms
12,160 KB
testcase_17 AC 71 ms
12,160 KB
testcase_18 AC 75 ms
12,288 KB
testcase_19 AC 72 ms
12,160 KB
testcase_20 AC 72 ms
12,288 KB
testcase_21 AC 72 ms
12,032 KB
testcase_22 AC 71 ms
12,160 KB
testcase_23 AC 71 ms
12,032 KB
testcase_24 AC 74 ms
12,288 KB
testcase_25 AC 73 ms
12,032 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 72 ms
12,288 KB
testcase_31 AC 72 ms
12,288 KB
testcase_32 AC 73 ms
12,032 KB
testcase_33 AC 72 ms
12,160 KB
testcase_34 AC 72 ms
12,160 KB
testcase_35 AC 73 ms
12,160 KB
testcase_36 AC 73 ms
12,160 KB
testcase_37 AC 72 ms
12,160 KB
testcase_38 AC 72 ms
12,160 KB
testcase_39 AC 72 ms
12,288 KB
testcase_40 AC 72 ms
12,160 KB
testcase_41 WA -
testcase_42 AC 71 ms
12,288 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def prime(n)
  r = []
  a = Array.new(n+1,true)
  for i in 2..[36,n].min
    if a[i]
      r << i
      for j in 1..n/i
        a[i*j] = false
      end
    end
  end
  for i in [36,n].min..n
    if a[i]
      r << i
    end
  end
  r
end

x = gets.to_i
p = prime(x)
ans = 0
b = 0
e = p.size-1
while b <= e
  if p[b]*p[e] > x
    ans += p[e]
    e -= 1
  else
    temp = 1
    while temp <= x
      temp *= p[b]
    end
    if temp/p[b]+p[e] < p[b]*p[e]
      ans += p[b]*p[e]
      e -= 1
    else
      ans += temp/p[b]
    end
    b += 1
  end
end
p ans
0