結果

問題 No.57 ミリオンダイス
ユーザー aikon_marimoaikon_marimo
提出日時 2018-05-08 23:43:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 239 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-06-28 02:34:45
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,952 KB
testcase_01 AC 126 ms
53,680 KB
testcase_02 AC 127 ms
53,912 KB
testcase_03 AC 131 ms
54,244 KB
testcase_04 AC 114 ms
52,708 KB
testcase_05 AC 128 ms
54,132 KB
testcase_06 AC 130 ms
54,504 KB
testcase_07 AC 133 ms
53,908 KB
testcase_08 AC 131 ms
54,256 KB
testcase_09 AC 135 ms
53,852 KB
testcase_10 AC 131 ms
54,164 KB
testcase_11 AC 119 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Iterator;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);

		int N = in.nextInt();
		System.out.println(3.5*N);
	}
}
0