結果

問題 No.1101 鼻水
ユーザー FromBooskaFromBooska
提出日時 2023-09-12 21:25:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 52,320 KB
最終ジャッジ日時 2024-06-30 08:56:12
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
52,320 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
51,712 KB
testcase_07 WA -
testcase_08 AC 35 ms
51,968 KB
testcase_09 WA -
testcase_10 AC 36 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 35 ms
51,840 KB
testcase_13 WA -
testcase_14 AC 36 ms
52,096 KB
testcase_15 WA -
testcase_16 AC 35 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 35 ms
51,968 KB
testcase_19 WA -
testcase_20 AC 35 ms
52,224 KB
testcase_21 WA -
testcase_22 AC 36 ms
51,840 KB
testcase_23 WA -
testcase_24 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 時間で解決め打ち二分探索できるか

V, T, P = map(int, input().split())

def check(t):
    v = 0
    v += V
    v += V*P
    v += (t-1)//T+1
    if v >= t:
        return 1
    else:
        return 0
    
#for t in range(0, 30):
#    print(t, check(t))
    
OK = 0
NG = 10**20
while NG-OK>1:
    mid = (NG+OK)//2
    if check(mid) == 1:
        OK = mid
    else:
        NG = mid
print(OK)
0