結果

問題 No.1006 Share an Integer
ユーザー shi-moshi-mo
提出日時 2020-09-30 21:49:51
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-07-06 12:28:54
合計ジャッジ時間 6,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
19,232 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 73 ms
12,032 KB
testcase_03 AC 70 ms
12,160 KB
testcase_04 AC 70 ms
12,160 KB
testcase_05 AC 72 ms
12,160 KB
testcase_06 AC 75 ms
12,032 KB
testcase_07 AC 71 ms
12,032 KB
testcase_08 AC 72 ms
12,160 KB
testcase_09 AC 73 ms
12,160 KB
testcase_10 AC 73 ms
12,032 KB
testcase_11 AC 1,883 ms
71,168 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x = gets.to_i

f = (0..x).map{|i| i-1 }
2.upto(x) do |i|
  i.step(x, i){|j| f[j] -= 1 }
end

p = [] * (x/2).ceil
1.upto(x/2) do |a|
  b = x - a
  score = (f[a]-f[b]).abs
  p[score] ||= []
  p[score] << a
  p[score] << b if b != a
end

ans = p.find{|pi| !pi.nil? }
ans.sort.each{|a| puts "#{a} #{x-a}" }
0