結果

問題 No.668 6.0*10^23
ユーザー rlangevinrlangevin
提出日時 2023-01-14 11:44:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-06-07 13:46:22
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,968 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 39 ms
52,224 KB
testcase_10 WA -
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,352 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
52,608 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 39 ms
52,736 KB
testcase_26 AC 38 ms
51,712 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 39 ms
51,456 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 38 ms
52,864 KB
testcase_38 WA -
testcase_39 AC 38 ms
52,224 KB
testcase_40 AC 40 ms
52,224 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 38 ms
52,224 KB
testcase_45 AC 38 ms
51,840 KB
testcase_46 AC 38 ms
51,840 KB
testcase_47 AC 38 ms
51,712 KB
testcase_48 AC 37 ms
51,584 KB
testcase_49 AC 38 ms
51,712 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