結果

問題 No.1464 Number Conversion
ユーザー otsunekootsuneko
提出日時 2021-05-05 00:54:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 75,660 KB
最終ジャッジ日時 2024-07-23 20:34:06
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 653 ms
75,164 KB
testcase_03 AC 36 ms
53,244 KB
testcase_04 AC 36 ms
52,476 KB
testcase_05 AC 37 ms
52,332 KB
testcase_06 AC 37 ms
52,780 KB
testcase_07 AC 53 ms
74,104 KB
testcase_08 AC 52 ms
73,840 KB
testcase_09 AC 44 ms
62,236 KB
testcase_10 AC 36 ms
52,292 KB
testcase_11 AC 162 ms
75,432 KB
testcase_12 WA -
testcase_13 AC 42 ms
59,432 KB
testcase_14 AC 86 ms
75,176 KB
testcase_15 AC 38 ms
52,300 KB
testcase_16 AC 37 ms
52,236 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
58,500 KB
testcase_21 AC 41 ms
59,096 KB
testcase_22 WA -
testcase_23 AC 38 ms
51,880 KB
testcase_24 AC 37 ms
51,948 KB
testcase_25 AC 39 ms
52,084 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,392 KB
testcase_28 AC 37 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = float(input())

if X == 0:
    print(0)
    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