結果

問題 No.1464 Number Conversion
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:49:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 62,088 KB
最終ジャッジ日時 2024-07-23 19:36:04
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 43 ms
59,648 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,608 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
58,368 KB
testcase_21 AC 42 ms
58,368 KB
testcase_22 WA -
testcase_23 AC 37 ms
51,456 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 37 ms
51,584 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = float(input())

if X == 0:
    print(0)
    exit()

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