結果
問題 | No.46 はじめのn歩 |
ユーザー | kirohi |
提出日時 | 2019-01-08 22:33:35 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 130 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-05-03 03:48:06 |
合計ジャッジ時間 | 1,521 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 99 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | AC | 88 ms
12,160 KB |
testcase_04 | AC | 86 ms
12,160 KB |
testcase_05 | AC | 87 ms
12,160 KB |
testcase_06 | WA | - |
testcase_07 | AC | 84 ms
12,160 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
a,b = gets.split.map(&:to_i) syou_amari = b.divmod(a) if syou_amari[1] puts syou_amari[0] + 1 else puts syou_amari[0] end