結果

問題 No.668 6.0*10^23
ユーザー 6soukiti29
提出日時 2018-03-23 23:05:17
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 2,938 ms
コンパイル使用メモリ 66,436 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 05:21:31
合計ジャッジ時間 4,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 43
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,math
var
    S = stdin.readline
    f : float64
f = S.parsefloat
echo formatBiggestFloat(f, ffScientific, 1).replace("e+00", "*10^").replace("e+0", "*10^").replace("e+", "*10^")
0