結果
| 問題 | No.313 π |
| コンテスト | |
| ユーザー |
tomerun
|
| 提出日時 | 2016-07-17 02:43:04 |
| 言語 | Ruby (3.4.1) |
| 結果 |
AC
|
| 実行時間 | 191 ms / 5,000 ms |
| コード長 | 245 bytes |
| コンパイル時間 | 47 ms |
| コンパイル使用メモリ | 7,552 KB |
| 実行使用メモリ | 22,528 KB |
| 最終ジャッジ日時 | 2024-10-15 15:11:26 |
| 合計ジャッジ時間 | 8,773 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 32 |
コンパイルメッセージ
Syntax OK
ソースコード
hist = [20104,20063,19892,20011,19874,20199,19898,20163,19956,19841]
str = gets.chars
before = after = ''
0.upto(9) { |c|
cnt = str.count(c.to_s)
if hist[c] < cnt
before = c
elsif hist[c] > cnt
after = c
end
}
puts "#{before} #{after}"
tomerun