結果

問題 No.9003 小数誤差テスト(テスト用)
ユーザー 👑 yumechiyumechi
提出日時 2020-10-03 21:13:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 55 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,156 KB
実行使用メモリ 79,048 KB
最終ジャッジ日時 2023-09-25 08:08:43
合計ジャッジ時間 1,472 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,304 KB
testcase_01 AC 67 ms
71,468 KB
testcase_02 AC 68 ms
71,260 KB
testcase_03 AC 68 ms
71,292 KB
testcase_04 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print("decimal")
print(n + n * 0.0001)
0