結果

問題 No.57 ミリオンダイス
ユーザー tentententen
提出日時 2020-11-05 08:29:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 70,972 KB
実行使用メモリ 56,548 KB
最終ジャッジ日時 2023-09-29 16:43:30
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,672 KB
testcase_01 AC 115 ms
56,124 KB
testcase_02 AC 115 ms
56,228 KB
testcase_03 AC 116 ms
56,548 KB
testcase_04 AC 116 ms
55,952 KB
testcase_05 AC 117 ms
56,096 KB
testcase_06 AC 118 ms
56,124 KB
testcase_07 AC 117 ms
56,148 KB
testcase_08 AC 117 ms
56,308 KB
testcase_09 AC 117 ms
55,764 KB
testcase_10 AC 118 ms
55,916 KB
testcase_11 AC 116 ms
56,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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