結果

問題 No.57 ミリオンダイス
ユーザー ぴろずぴろず
提出日時 2014-12-12 11:23:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 1,858 ms
コンパイル使用メモリ 71,912 KB
実行使用メモリ 56,248 KB
最終ジャッジ日時 2023-08-08 17:37:26
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,744 KB
testcase_01 AC 119 ms
55,484 KB
testcase_02 AC 120 ms
55,888 KB
testcase_03 AC 120 ms
55,440 KB
testcase_04 AC 121 ms
56,000 KB
testcase_05 AC 120 ms
56,248 KB
testcase_06 AC 122 ms
55,484 KB
testcase_07 AC 120 ms
55,792 KB
testcase_08 AC 120 ms
56,184 KB
testcase_09 AC 120 ms
55,900 KB
testcase_10 AC 120 ms
55,876 KB
testcase_11 AC 120 ms
55,756 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