結果

問題 No.293 4>7の世界
ユーザー shi-moshi-mo
提出日時 2016-10-26 12:50:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 11,420 KB
実行使用メモリ 15,372 KB
最終ジャッジ日時 2023-08-28 22:15:48
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
15,048 KB
testcase_01 AC 80 ms
15,160 KB
testcase_02 AC 82 ms
15,364 KB
testcase_03 AC 80 ms
15,084 KB
testcase_04 AC 79 ms
15,336 KB
testcase_05 AC 82 ms
15,048 KB
testcase_06 AC 80 ms
15,164 KB
testcase_07 AC 82 ms
15,044 KB
testcase_08 AC 83 ms
15,152 KB
testcase_09 AC 79 ms
15,336 KB
testcase_10 AC 80 ms
15,152 KB
testcase_11 AC 79 ms
15,324 KB
testcase_12 AC 81 ms
15,372 KB
testcase_13 AC 81 ms
15,248 KB
testcase_14 AC 80 ms
15,280 KB
testcase_15 AC 82 ms
15,156 KB
testcase_16 AC 82 ms
15,260 KB
testcase_17 AC 80 ms
15,196 KB
testcase_18 AC 81 ms
15,160 KB
testcase_19 AC 83 ms
15,332 KB
testcase_20 AC 84 ms
15,332 KB
testcase_21 AC 81 ms
15,280 KB
testcase_22 AC 81 ms
15,324 KB
testcase_23 AC 81 ms
15,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a, b = gets.split.map(&:to_i)

if a == b
  puts a
  exit 0
end

sa, sb = [a, b].map{|n| sprintf "%010d", n }

10.times do |i|
  ca = sa[i].to_i
  cb = sb[i].to_i

  next if ca == cb

  if 4 == ca && 7 == cb
    puts a
    exit 0
  end
  if 7 == ca && 4 == cb
    puts b
    exit 0
  end

  puts (ca < cb) ? b : a
  exit 0
end

warn 'must not happen'
exit 1
0