結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
nonmint25sh
|
| 提出日時 | 2017-02-08 17:46:50 |
| 言語 | Ruby (3.4.1) |
| 結果 |
AC
|
| 実行時間 | 99 ms / 5,000 ms |
| コード長 | 87 bytes |
| コンパイル時間 | 89 ms |
| コンパイル使用メモリ | 7,296 KB |
| 実行使用メモリ | 12,288 KB |
| 最終ジャッジ日時 | 2024-12-25 16:49:29 |
| 合計ジャッジ時間 | 2,800 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
コンパイルメッセージ
Syntax OK
ソースコード
a,b = gets.split.map(&:to_i)
a.upto(b){|i|
puts i if i%3==0 || i.to_s.include?("3")
}
nonmint25sh