結果

問題 No.668 6.0*10^23
ユーザー rlangevinrlangevin
提出日時 2023-01-14 11:44:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 87,324 KB
実行使用メモリ 71,724 KB
最終ジャッジ日時 2023-08-26 18:15:36
合計ジャッジ時間 6,989 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 70 ms
70,920 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 69 ms
70,992 KB
testcase_10 WA -
testcase_11 AC 69 ms
71,164 KB
testcase_12 AC 69 ms
71,152 KB
testcase_13 WA -
testcase_14 AC 68 ms
71,212 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 68 ms
71,340 KB
testcase_18 WA -
testcase_19 AC 69 ms
71,280 KB
testcase_20 AC 68 ms
71,104 KB
testcase_21 AC 69 ms
71,372 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 69 ms
71,112 KB
testcase_26 AC 70 ms
71,368 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 70 ms
71,332 KB
testcase_30 AC 70 ms
71,104 KB
testcase_31 AC 71 ms
71,152 KB
testcase_32 AC 72 ms
71,108 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 72 ms
71,172 KB
testcase_38 WA -
testcase_39 AC 73 ms
71,344 KB
testcase_40 AC 71 ms
70,988 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 73 ms
70,996 KB
testcase_45 AC 70 ms
71,180 KB
testcase_46 AC 72 ms
70,964 KB
testcase_47 AC 72 ms
71,436 KB
testcase_48 AC 70 ms
71,144 KB
testcase_49 AC 73 ms
71,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S) - 1
S = int(S[:3])
if S%10 >= 5:
    S += 1
S = str(S)
N += len(S) - 3
print(S[0] + "." + S[1] + "*10^" + str(N))
0