結果

問題 No.312 置換処理
ユーザー shi-moshi-mo
提出日時 2016-10-25 23:28:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 39,344 KB
最終ジャッジ日時 2024-05-03 06:04:57
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
18,048 KB
testcase_01 AC 152 ms
12,800 KB
testcase_02 AC 201 ms
12,672 KB
testcase_03 AC 170 ms
12,544 KB
testcase_04 AC 104 ms
12,288 KB
testcase_05 AC 107 ms
12,288 KB
testcase_06 AC 132 ms
12,672 KB
testcase_07 AC 206 ms
14,080 KB
testcase_08 AC 108 ms
12,288 KB
testcase_09 AC 107 ms
12,288 KB
testcase_10 AC 106 ms
12,416 KB
testcase_11 AC 131 ms
12,928 KB
testcase_12 AC 106 ms
12,416 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 107 ms
12,288 KB
testcase_23 WA -
testcase_24 AC 107 ms
12,288 KB
testcase_25 AC 109 ms
12,416 KB
testcase_26 AC 106 ms
12,416 KB
testcase_27 WA -
testcase_28 AC 108 ms
12,160 KB
testcase_29 AC 105 ms
12,416 KB
testcase_30 AC 115 ms
12,416 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

n = gets.to_i

if Prime.prime?(n)
  puts n
  exit 0
end

if 0 == n % 2 &&  Prime.prime?(n/2)
  puts n/2
  exit 0
end

Prime.each(n) do |i|
  next if 2 == i
  next if 0 != n % i

  puts i
  exit 0
end
0