結果

問題 No.1464 Number Conversion
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:48:10
言語 PyPy3
(7.3.13)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 87,268 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2023-10-01 02:04:47
合計ジャッジ時間 4,455 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 73 ms
71,308 KB
testcase_04 AC 72 ms
71,164 KB
testcase_05 AC 72 ms
70,748 KB
testcase_06 AC 71 ms
70,992 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 72 ms
70,876 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 77 ms
76,048 KB
testcase_14 WA -
testcase_15 AC 74 ms
71,052 KB
testcase_16 AC 72 ms
71,088 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 76 ms
76,044 KB
testcase_21 AC 75 ms
75,920 KB
testcase_22 WA -
testcase_23 AC 73 ms
70,872 KB
testcase_24 AC 71 ms
71,072 KB
testcase_25 AC 70 ms
71,072 KB
testcase_26 WA -
testcase_27 AC 72 ms
70,600 KB
testcase_28 AC 74 ms
71,152 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