結果

問題 No.1464 Number Conversion
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:48:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 62,380 KB
最終ジャッジ日時 2024-07-23 19:35:17
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
53,832 KB
testcase_04 AC 38 ms
52,628 KB
testcase_05 AC 38 ms
52,440 KB
testcase_06 AC 37 ms
53,084 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,576 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 42 ms
59,628 KB
testcase_14 WA -
testcase_15 AC 39 ms
52,684 KB
testcase_16 AC 38 ms
52,888 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
59,412 KB
testcase_21 AC 42 ms
59,888 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,792 KB
testcase_24 AC 38 ms
52,816 KB
testcase_25 AC 38 ms
52,756 KB
testcase_26 WA -
testcase_27 AC 38 ms
53,220 KB
testcase_28 AC 38 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = float(input())

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