結果

問題 No.285 消費税2
ユーザー htensaihtensai
提出日時 2019-11-22 19:52:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 76,408 KB
実行使用メモリ 55,256 KB
最終ジャッジ日時 2024-10-11 02:40:06
合計ジャッジ時間 8,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
55,040 KB
testcase_01 AC 159 ms
54,912 KB
testcase_02 AC 163 ms
54,864 KB
testcase_03 AC 163 ms
54,908 KB
testcase_04 AC 163 ms
54,768 KB
testcase_05 AC 165 ms
54,964 KB
testcase_06 AC 159 ms
55,012 KB
testcase_07 AC 159 ms
54,644 KB
testcase_08 AC 162 ms
54,624 KB
testcase_09 AC 162 ms
54,496 KB
testcase_10 AC 162 ms
54,604 KB
testcase_11 AC 161 ms
55,008 KB
testcase_12 AC 163 ms
54,704 KB
testcase_13 AC 161 ms
54,860 KB
testcase_14 AC 156 ms
54,776 KB
testcase_15 AC 165 ms
54,708 KB
testcase_16 AC 164 ms
54,720 KB
testcase_17 AC 169 ms
54,624 KB
testcase_18 AC 164 ms
54,968 KB
testcase_19 AC 163 ms
54,944 KB
testcase_20 AC 162 ms
54,888 KB
testcase_21 AC 163 ms
55,256 KB
testcase_22 AC 163 ms
55,064 KB
testcase_23 AC 166 ms
54,644 KB
testcase_24 AC 163 ms
54,856 KB
testcase_25 AC 162 ms
54,660 KB
testcase_26 AC 161 ms
54,992 KB
testcase_27 AC 161 ms
54,796 KB
testcase_28 AC 164 ms
54,868 KB
testcase_29 AC 162 ms
54,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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