結果
問題 | No.388 階段 (1) |
ユーザー |
![]() |
提出日時 | 2017-08-27 17:15:10 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 119 bytes |
コンパイル時間 | 63 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-11-06 06:46:17 |
合計ジャッジ時間 | 2,035 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
コンパイルメッセージ
Main.rb:8: warning: mismatched indentations at 'end' with 'else' at 6 Syntax OK
ソースコード
a, b = gets.split.map(&:to_i) #スペース区切りの整数の入力 if a%b > 0 print a/b+1 else print a/b+1 end