結果

問題 No.388 階段 (1)
ユーザー mkawa2mkawa2
提出日時 2019-12-26 12:37:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,018 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,228 KB
最終ジャッジ日時 2024-04-14 10:46:36
合計ジャッジ時間 12,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,018 ms
44,116 KB
testcase_01 AC 517 ms
44,264 KB
testcase_02 AC 521 ms
44,112 KB
testcase_03 AC 522 ms
43,988 KB
testcase_04 AC 519 ms
43,740 KB
testcase_05 AC 519 ms
44,244 KB
testcase_06 AC 519 ms
43,984 KB
testcase_07 AC 519 ms
43,984 KB
testcase_08 AC 521 ms
44,116 KB
testcase_09 AC 517 ms
43,984 KB
testcase_10 AC 520 ms
43,980 KB
testcase_11 AC 522 ms
43,724 KB
testcase_12 AC 516 ms
43,856 KB
testcase_13 AC 521 ms
43,988 KB
testcase_14 AC 518 ms
80,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from math import *
from collections import *
from heapq import *
from random import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    s,f=MI()
    print(s//f+1)
main()
0