結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
cleantted
|
| 提出日時 | 2016-08-24 03:45:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 5,000 ms |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 347 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,356 KB |
| 最終ジャッジ日時 | 2026-05-08 07:30:26 |
| 合計ジャッジ時間 | 2,189 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
first = input() split_first = first.split( ) a = int(split_first[0]) b = int(split_first[1]) c = 1 if b%a == 0: c = 0 print(b//a + c)
cleantted