結果

問題 No.3099 夜の道路は気をつけて運転しなければならない
ユーザー prin_kemkemprin_kemkem
提出日時 2023-04-01 02:17:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 61,228 KB
最終ジャッジ日時 2023-10-24 11:41:52
合計ジャッジ時間 1,764 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,228 KB
testcase_01 AC 49 ms
61,228 KB
testcase_02 AC 48 ms
61,228 KB
testcase_03 AC 48 ms
61,228 KB
testcase_04 AC 47 ms
61,228 KB
testcase_05 AC 48 ms
61,228 KB
testcase_06 AC 49 ms
61,228 KB
testcase_07 AC 47 ms
61,228 KB
testcase_08 AC 46 ms
61,228 KB
testcase_09 AC 47 ms
61,228 KB
testcase_10 AC 47 ms
61,228 KB
testcase_11 AC 48 ms
61,228 KB
testcase_12 AC 47 ms
61,228 KB
testcase_13 AC 47 ms
61,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate
from heapq import heapify, heappop, heappush
import math
import bisect
import sys
# sys.setrecursionlimit(700000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################

T, S, D = map(int, input().split())
print(D/S)
0