結果

問題 No.668 6.0*10^23
ユーザー ああいいああいい
提出日時 2022-05-19 09:07:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-09-17 14:31:38
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,236 KB
testcase_01 AC 35 ms
53,032 KB
testcase_02 AC 37 ms
52,476 KB
testcase_03 AC 37 ms
52,536 KB
testcase_04 AC 36 ms
53,520 KB
testcase_05 AC 34 ms
52,272 KB
testcase_06 AC 33 ms
52,008 KB
testcase_07 AC 32 ms
52,744 KB
testcase_08 AC 32 ms
52,220 KB
testcase_09 AC 33 ms
52,884 KB
testcase_10 AC 33 ms
52,960 KB
testcase_11 AC 31 ms
52,508 KB
testcase_12 AC 33 ms
52,752 KB
testcase_13 AC 38 ms
53,124 KB
testcase_14 AC 34 ms
53,120 KB
testcase_15 AC 33 ms
53,128 KB
testcase_16 AC 32 ms
52,812 KB
testcase_17 AC 32 ms
52,564 KB
testcase_18 AC 33 ms
52,276 KB
testcase_19 AC 32 ms
53,584 KB
testcase_20 AC 33 ms
53,136 KB
testcase_21 AC 33 ms
53,084 KB
testcase_22 AC 34 ms
53,196 KB
testcase_23 AC 38 ms
53,688 KB
testcase_24 AC 36 ms
52,356 KB
testcase_25 AC 36 ms
52,820 KB
testcase_26 AC 36 ms
53,124 KB
testcase_27 AC 36 ms
53,076 KB
testcase_28 AC 34 ms
53,152 KB
testcase_29 AC 32 ms
53,440 KB
testcase_30 AC 34 ms
53,628 KB
testcase_31 AC 33 ms
52,004 KB
testcase_32 AC 35 ms
52,032 KB
testcase_33 AC 35 ms
53,232 KB
testcase_34 AC 35 ms
52,368 KB
testcase_35 AC 34 ms
52,816 KB
testcase_36 AC 36 ms
52,544 KB
testcase_37 AC 37 ms
52,692 KB
testcase_38 AC 37 ms
54,120 KB
testcase_39 AC 36 ms
52,748 KB
testcase_40 AC 36 ms
52,520 KB
testcase_41 AC 37 ms
54,596 KB
testcase_42 AC 37 ms
52,620 KB
testcase_43 AC 38 ms
52,616 KB
testcase_44 AC 37 ms
52,968 KB
testcase_45 AC 38 ms
51,936 KB
testcase_46 AC 36 ms
52,316 KB
testcase_47 AC 37 ms
52,444 KB
testcase_48 AC 36 ms
52,288 KB
testcase_49 AC 36 ms
52,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()

a = int(N[0])
b = int(N[1])
c = len(N) - 1
d = int(N[2])

if d >= 5:
    b += 1
if b == 10:
    b = 0
    a += 1
if a == 10:
    a = 1
    b = 0
    c += 1
print(a,".",b,"*",10,"^",c,sep = "")
0