結果
問題 | No.1186 長方形の敷き詰め |
ユーザー | buey_t |
提出日時 | 2023-05-07 09:50:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 364 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 89,944 KB |
最終ジャッジ日時 | 2024-05-03 11:37:26 |
合計ジャッジ時間 | 5,468 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
85,112 KB |
testcase_01 | AC | 137 ms
85,248 KB |
testcase_02 | AC | 135 ms
84,992 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 137 ms
85,248 KB |
testcase_06 | AC | 131 ms
85,352 KB |
testcase_07 | AC | 130 ms
85,356 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 136 ms
85,200 KB |
testcase_12 | AC | 136 ms
85,120 KB |
testcase_13 | AC | 131 ms
85,248 KB |
testcase_14 | AC | 127 ms
85,120 KB |
testcase_15 | AC | 127 ms
85,132 KB |
testcase_16 | AC | 130 ms
85,248 KB |
testcase_17 | AC | 129 ms
84,992 KB |
testcase_18 | AC | 129 ms
85,212 KB |
testcase_19 | AC | 131 ms
85,400 KB |
testcase_20 | AC | 130 ms
85,164 KB |
testcase_21 | AC | 129 ms
85,396 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 145 ms
85,248 KB |
testcase_25 | AC | 137 ms
85,120 KB |
testcase_26 | AC | 140 ms
85,120 KB |
ソースコード
from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from random import randrange from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter import sys input = sys.stdin.readline # .rstrip() INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!! ''' 縦にNってのがでかいな MをNで何回割れるか的な ''' N,M = map(int, input().split()) now = N ans = 0 while now <= M: ans += 1 + (M-now) now += N print(ans+1)