結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2025-03-10 02:11:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 200 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 11,904 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2025-03-10 02:11:38 |
合計ジャッジ時間 | 1,829 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 10 |
ソースコード
import math def input_split_line(): return list(map(int, input().split())) def solve(): a, b = input_split_line() return math.ceil(b/a) for _ in range(int(input())): print(solve())