結果

問題 No.285 消費税2
ユーザー ぴろずぴろず
提出日時 2015-10-09 22:21:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 1,972 ms
コンパイル使用メモリ 80,804 KB
実行使用メモリ 42,400 KB
最終ジャッジ日時 2024-07-20 02:26:07
合計ジャッジ時間 6,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
42,248 KB
testcase_01 AC 138 ms
42,284 KB
testcase_02 AC 133 ms
41,676 KB
testcase_03 AC 145 ms
42,316 KB
testcase_04 AC 137 ms
42,228 KB
testcase_05 AC 140 ms
42,056 KB
testcase_06 AC 135 ms
42,048 KB
testcase_07 AC 113 ms
41,472 KB
testcase_08 AC 129 ms
41,920 KB
testcase_09 AC 120 ms
41,820 KB
testcase_10 AC 118 ms
41,620 KB
testcase_11 AC 142 ms
42,400 KB
testcase_12 AC 145 ms
42,176 KB
testcase_13 AC 133 ms
42,292 KB
testcase_14 AC 134 ms
42,284 KB
testcase_15 AC 146 ms
42,336 KB
testcase_16 AC 137 ms
42,296 KB
testcase_17 AC 147 ms
42,136 KB
testcase_18 AC 142 ms
42,320 KB
testcase_19 AC 127 ms
41,708 KB
testcase_20 AC 131 ms
42,184 KB
testcase_21 AC 123 ms
42,120 KB
testcase_22 AC 135 ms
42,172 KB
testcase_23 AC 139 ms
42,312 KB
testcase_24 AC 125 ms
41,648 KB
testcase_25 AC 127 ms
41,764 KB
testcase_26 AC 138 ms
41,932 KB
testcase_27 AC 146 ms
42,164 KB
testcase_28 AC 145 ms
42,172 KB
testcase_29 AC 133 ms
41,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no285;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = String.valueOf(sc.nextLong() * 108);
		System.out.println(s.substring(0, s.length() - 2) + "." + s.substring(s.length()-2, s.length()));
	}

}
0