結果
| 問題 |
No.350 d=vt
|
| コンテスト | |
| ユーザー |
norioc
|
| 提出日時 | 2025-02-19 02:06:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 150 ms / 2,000 ms |
| コード長 | 132 bytes |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 82,572 KB |
| 実行使用メモリ | 89,008 KB |
| 最終ジャッジ日時 | 2025-02-19 02:06:34 |
| 合計ジャッジ時間 | 3,481 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
from fractions import Fraction V, T = input().split() m = Fraction(V) * Fraction(T) ans = m.numerator // m.denominator print(ans)
norioc