結果

問題 No.668 6.0*10^23
ユーザー syunsukesyunsuke
提出日時 2018-08-26 22:11:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-07-01 04:00:36
合計ジャッジ時間 3,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 41 ms
11,520 KB
testcase_03 AC 37 ms
11,264 KB
testcase_04 AC 38 ms
11,136 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 39 ms
11,264 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 36 ms
11,136 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 46 ms
11,776 KB
testcase_14 WA -
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 35 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 39 ms
11,264 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
11,648 KB
testcase_23 AC 42 ms
11,392 KB
testcase_24 AC 33 ms
10,880 KB
testcase_25 AC 48 ms
11,520 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 43 ms
11,648 KB
testcase_28 AC 49 ms
11,648 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 44 ms
11,520 KB
testcase_34 AC 36 ms
11,136 KB
testcase_35 AC 35 ms
11,136 KB
testcase_36 AC 42 ms
11,520 KB
testcase_37 WA -
testcase_38 AC 39 ms
11,264 KB
testcase_39 WA -
testcase_40 AC 47 ms
11,520 KB
testcase_41 AC 44 ms
11,520 KB
testcase_42 AC 38 ms
11,264 KB
testcase_43 AC 46 ms
11,776 KB
testcase_44 AC 49 ms
11,648 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 30 ms
10,752 KB
testcase_49 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(map(int,input()))

if S[0]==9 and S[1]==9 and S[2]>=5:
    print("1.0*10^"+str(len(S)))
elif S[2]>=5:
    if S[1]<=8:
        S[1]+=1
    elif S[1]==9:
        S[0]+=1
        S[1]=0
    print(str(S[0])+"."+str(S[1])+"*10^"+str(len(S)-1))
0