結果
| 問題 | No.668 6.0*10^23 |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2024-02-04 21:30:32 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 61 ms / 2,000 ms |
| + 914µs | |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 239 ms |
| コンパイル使用メモリ | 96,212 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-09-05 15:53:34 |
| 合計ジャッジ時間 | 5,778 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 50 |
ソースコード
N = input()
E = len(N) - 1
n01 = int(N[:2])
n2 = int(N[2])
if n2 > 4:
n01 += 1
if n01 == 100:
E += 1
n01 = str(n01)
print(n01[0]+"."+n01[1]+"*10^"+str(E))
ntuda