結果

問題 No.668 6.0*10^23
ユーザー 👑 KazunKazun
提出日時 2020-09-18 02:06:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-22 07:29:23
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,492 KB
testcase_01 AC 32 ms
53,372 KB
testcase_02 AC 32 ms
52,480 KB
testcase_03 AC 32 ms
52,528 KB
testcase_04 AC 33 ms
53,532 KB
testcase_05 AC 32 ms
51,828 KB
testcase_06 AC 33 ms
52,068 KB
testcase_07 AC 32 ms
52,192 KB
testcase_08 AC 31 ms
52,428 KB
testcase_09 AC 32 ms
53,012 KB
testcase_10 AC 33 ms
52,536 KB
testcase_11 AC 37 ms
54,208 KB
testcase_12 AC 32 ms
52,616 KB
testcase_13 AC 31 ms
52,776 KB
testcase_14 AC 33 ms
53,292 KB
testcase_15 AC 32 ms
53,628 KB
testcase_16 AC 32 ms
52,416 KB
testcase_17 AC 32 ms
52,680 KB
testcase_18 AC 33 ms
53,136 KB
testcase_19 AC 33 ms
52,940 KB
testcase_20 AC 33 ms
52,248 KB
testcase_21 AC 35 ms
52,644 KB
testcase_22 AC 35 ms
53,744 KB
testcase_23 AC 33 ms
53,420 KB
testcase_24 AC 31 ms
52,752 KB
testcase_25 AC 32 ms
53,132 KB
testcase_26 AC 33 ms
51,964 KB
testcase_27 AC 32 ms
53,616 KB
testcase_28 AC 33 ms
52,432 KB
testcase_29 AC 31 ms
52,460 KB
testcase_30 AC 32 ms
53,480 KB
testcase_31 AC 31 ms
53,140 KB
testcase_32 AC 31 ms
53,416 KB
testcase_33 AC 32 ms
52,924 KB
testcase_34 AC 31 ms
52,240 KB
testcase_35 AC 30 ms
52,488 KB
testcase_36 AC 31 ms
52,552 KB
testcase_37 AC 32 ms
53,460 KB
testcase_38 AC 31 ms
52,428 KB
testcase_39 AC 31 ms
52,572 KB
testcase_40 AC 32 ms
52,576 KB
testcase_41 AC 33 ms
53,652 KB
testcase_42 AC 33 ms
52,612 KB
testcase_43 AC 34 ms
53,072 KB
testcase_44 AC 34 ms
52,532 KB
testcase_45 AC 31 ms
52,156 KB
testcase_46 AC 32 ms
52,832 KB
testcase_47 AC 32 ms
53,356 KB
testcase_48 AC 32 ms
53,620 KB
testcase_49 AC 34 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()

x,y,z=map(int,N[:3])
p=len(N)

if z>=5:
    y+=1
    if y==10:
        y=0
        x+=1
        if x==10:
            x=1
            p+=1

print("{}.{}*10^{}".format(x,y,p-1))
0