結果
| 問題 | No.804 野菜が苦手 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 WA * 3 |
ソースコード
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()