結果

問題 No.668 6.0*10^23
ユーザー flippergoflippergo
提出日時 2024-12-17 09:24:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-12-17 09:24:37
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,388 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 38 ms
53,900 KB
testcase_03 AC 37 ms
53,540 KB
testcase_04 AC 40 ms
52,752 KB
testcase_05 AC 38 ms
52,524 KB
testcase_06 AC 38 ms
52,444 KB
testcase_07 AC 40 ms
52,436 KB
testcase_08 AC 37 ms
52,820 KB
testcase_09 AC 40 ms
52,360 KB
testcase_10 AC 38 ms
52,540 KB
testcase_11 AC 37 ms
53,072 KB
testcase_12 AC 38 ms
52,756 KB
testcase_13 AC 38 ms
54,388 KB
testcase_14 AC 38 ms
53,536 KB
testcase_15 AC 37 ms
52,424 KB
testcase_16 AC 37 ms
52,536 KB
testcase_17 AC 37 ms
52,596 KB
testcase_18 AC 38 ms
52,756 KB
testcase_19 AC 38 ms
52,340 KB
testcase_20 AC 39 ms
52,852 KB
testcase_21 AC 38 ms
52,884 KB
testcase_22 AC 37 ms
53,744 KB
testcase_23 AC 38 ms
53,680 KB
testcase_24 AC 38 ms
52,676 KB
testcase_25 AC 37 ms
53,764 KB
testcase_26 AC 37 ms
52,952 KB
testcase_27 AC 39 ms
53,584 KB
testcase_28 AC 40 ms
53,004 KB
testcase_29 AC 38 ms
52,952 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 AC 40 ms
52,392 KB
testcase_32 AC 38 ms
52,988 KB
testcase_33 AC 39 ms
54,164 KB
testcase_34 AC 38 ms
53,160 KB
testcase_35 AC 38 ms
52,396 KB
testcase_36 AC 37 ms
52,756 KB
testcase_37 AC 38 ms
52,792 KB
testcase_38 AC 38 ms
53,492 KB
testcase_39 AC 37 ms
53,068 KB
testcase_40 AC 38 ms
53,700 KB
testcase_41 AC 38 ms
53,144 KB
testcase_42 AC 38 ms
52,376 KB
testcase_43 AC 38 ms
52,732 KB
testcase_44 AC 37 ms
52,624 KB
testcase_45 AC 40 ms
53,816 KB
testcase_46 AC 37 ms
52,748 KB
testcase_47 AC 37 ms
52,272 KB
testcase_48 AC 37 ms
51,944 KB
testcase_49 AC 40 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input().strip()
c = len(N)-1
if int(N[2])<5:
    a = N[0]
    b = N[1]
else:
    if N[1]!="9":
        b = str(int(N[1])+1)
        a = N[0]
    else:
        if N[0]!="9":
            a = str(int(N[0])+1)
            b = "0"
        else:
            a = "1"
            b = "0"
            c += 1
print(a+"."+b+"*10^"+str(c))
0