結果

問題 No.285 消費税2
ユーザー ああいいああいい
提出日時 2022-03-17 22:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 58 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-10-01 21:02:01
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,108 KB
testcase_01 AC 39 ms
52,400 KB
testcase_02 AC 39 ms
53,008 KB
testcase_03 AC 41 ms
51,784 KB
testcase_04 AC 39 ms
52,952 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 40 ms
53,184 KB
testcase_07 AC 40 ms
53,516 KB
testcase_08 AC 40 ms
51,884 KB
testcase_09 AC 40 ms
52,304 KB
testcase_10 AC 40 ms
51,820 KB
testcase_11 AC 38 ms
51,792 KB
testcase_12 AC 39 ms
53,236 KB
testcase_13 AC 39 ms
53,044 KB
testcase_14 AC 39 ms
52,428 KB
testcase_15 AC 38 ms
52,432 KB
testcase_16 AC 38 ms
52,452 KB
testcase_17 AC 39 ms
53,308 KB
testcase_18 AC 39 ms
51,740 KB
testcase_19 AC 40 ms
52,560 KB
testcase_20 AC 40 ms
52,824 KB
testcase_21 AC 40 ms
51,828 KB
testcase_22 AC 39 ms
51,992 KB
testcase_23 AC 39 ms
52,060 KB
testcase_24 AC 40 ms
52,308 KB
testcase_25 AC 39 ms
53,028 KB
testcase_26 AC 39 ms
52,712 KB
testcase_27 AC 39 ms
51,620 KB
testcase_28 AC 39 ms
52,624 KB
testcase_29 AC 39 ms
52,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D = int(input())
S = str(D * 108)
print(S[:-2]+"."+S[-2:])
0