結果

問題 No.57 ミリオンダイス
ユーザー aikon_marimoaikon_marimo
提出日時 2018-05-08 23:43:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 239 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 72,644 KB
実行使用メモリ 56,164 KB
最終ジャッジ日時 2023-09-10 11:11:23
合計ジャッジ時間 4,805 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,800 KB
testcase_01 AC 121 ms
55,804 KB
testcase_02 AC 119 ms
56,164 KB
testcase_03 AC 120 ms
55,952 KB
testcase_04 AC 118 ms
55,868 KB
testcase_05 AC 119 ms
55,912 KB
testcase_06 AC 119 ms
55,724 KB
testcase_07 AC 119 ms
55,696 KB
testcase_08 AC 119 ms
55,860 KB
testcase_09 AC 118 ms
55,844 KB
testcase_10 AC 118 ms
55,672 KB
testcase_11 AC 119 ms
55,732 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