結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-02 06:51:47 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 135 bytes |
| 記録 | |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 77,380 KB |
| 最終ジャッジ日時 | 2025-12-03 23:08:53 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 10 |
ソースコード
first=int(raw_input()) first_split=first.split() a=int(first_sprit[0]) b=int(first_sprit[1]) if b%a==0: print(b/a) else: print(b/a+1)