結果
| 問題 | 
                            No.481 1から10
                             | 
                    
| コンテスト | |
| ユーザー | 
                             sjgq5302
                         | 
                    
| 提出日時 | 2017-07-24 22:19:34 | 
| 言語 | Ruby  (3.4.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 91 bytes | 
| コンパイル時間 | 102 ms | 
| コンパイル使用メモリ | 7,424 KB | 
| 実行使用メモリ | 12,416 KB | 
| 最終ジャッジ日時 | 2024-10-09 13:40:51 | 
| 合計ジャッジ時間 | 1,866 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 7 WA * 1 | 
コンパイルメッセージ
Syntax OK
ソースコード
num = gets
num.delete!(" ")
(1..10).each{|i|
    puts i if num.include?(i.to_s) == false
}
            
            
            
        
            
sjgq5302