結果

問題 No.57 ミリオンダイス
ユーザー ぴろずぴろず
提出日時 2014-12-12 11:23:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-04-26 10:10:23
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,008 KB
testcase_01 AC 136 ms
53,820 KB
testcase_02 AC 128 ms
53,968 KB
testcase_03 AC 126 ms
53,836 KB
testcase_04 AC 124 ms
54,024 KB
testcase_05 AC 127 ms
54,124 KB
testcase_06 AC 109 ms
52,744 KB
testcase_07 AC 126 ms
53,896 KB
testcase_08 AC 124 ms
54,112 KB
testcase_09 AC 122 ms
53,972 KB
testcase_10 AC 131 ms
54,044 KB
testcase_11 AC 127 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(sc.nextInt() * 3.5);
	}
}
0