結果
| 問題 |
No.668 6.0*10^23
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2024-07-31 06:29:11 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 44 ms / 2,000 ms |
| コード長 | 211 bytes |
| コンパイル時間 | 350 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 12,416 KB |
| 最終ジャッジ日時 | 2024-07-31 06:29:16 |
| 合計ジャッジ時間 | 3,860 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 50 |
ソースコード
S=list(map(int,list(input())))
if S[2]>=5:
S[2]=0
S[1]+=1
else:
S[2]=0
if S[1]==10:
S[1]=0
S[0]+=1
if S[0]==10:
S[0]=0
S=[1]+S
print(str(S[0])+"."+str(S[1])+"*10^"+str(len(S)-1))
titia