結果

問題 No.804 野菜が苦手
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-07-06 20:50:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,892 KB
実行使用メモリ 56,880 KB
最終ジャッジ日時 2024-07-06 20:50:06
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
55,228 KB
testcase_02 AC 37 ms
56,072 KB
testcase_03 WA -
testcase_04 AC 37 ms
55,844 KB
testcase_05 AC 37 ms
56,336 KB
testcase_06 AC 39 ms
55,544 KB
testcase_07 WA -
testcase_08 AC 37 ms
55,372 KB
testcase_09 AC 37 ms
56,580 KB
testcase_10 AC 42 ms
55,548 KB
testcase_11 AC 38 ms
56,068 KB
testcase_12 AC 39 ms
56,592 KB
testcase_13 AC 37 ms
55,796 KB
testcase_14 AC 38 ms
56,504 KB
testcase_15 AC 37 ms
55,992 KB
testcase_16 AC 46 ms
56,880 KB
testcase_17 AC 38 ms
55,924 KB
testcase_18 AC 37 ms
56,532 KB
testcase_19 AC 38 ms
55,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline

A,B,C,D = map(int,input().split())
now = 0
for i in range(1,A+1):
    if(C*i<=B)&((C+1)*i<=D):
        continue
    else:
        print(i-1)
        exit()
0