結果

問題 No.1464 Number Conversion
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:55:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 75,488 KB
最終ジャッジ日時 2024-07-23 20:36:00
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,296 KB
testcase_01 AC 39 ms
52,396 KB
testcase_02 AC 666 ms
75,040 KB
testcase_03 AC 37 ms
52,272 KB
testcase_04 AC 37 ms
53,128 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 53 ms
74,176 KB
testcase_08 AC 53 ms
74,152 KB
testcase_09 AC 45 ms
62,256 KB
testcase_10 AC 38 ms
52,216 KB
testcase_11 AC 162 ms
75,488 KB
testcase_12 WA -
testcase_13 AC 41 ms
58,756 KB
testcase_14 AC 87 ms
75,208 KB
testcase_15 AC 39 ms
53,280 KB
testcase_16 AC 37 ms
52,332 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
58,500 KB
testcase_21 AC 41 ms
59,524 KB
testcase_22 WA -
testcase_23 AC 37 ms
52,732 KB
testcase_24 AC 37 ms
52,668 KB
testcase_25 AC 37 ms
51,996 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,128 KB
testcase_28 AC 36 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = float(input())

if X == 0:
    print("0/1")
    exit()

for i in range(1,10**8+1):
    X2 = X*i
    if int(X2) != 0 and X2 == int(X2):
        print(str(int(X2))+"/"+str(i))
        break
0