結果
問題 |
No.1076 寿司打
|
ユーザー |
|
提出日時 | 2020-06-12 21:53:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 205 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-06-24 04:53:33 |
合計ジャッジ時間 | 1,486 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | WA * 10 |
ソースコード
from fractions import Fraction from sys import stdin def main(): input = lambda: stdin.readline()[:-1] P = float(input()) n = Fraction(int(P * 10000), 10000) print(n.numerator) main()