結果

問題 No.57 ミリオンダイス
ユーザー tentententen
提出日時 2020-11-05 08:29:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 50,084 KB
最終ジャッジ日時 2024-07-22 10:49:01
合計ジャッジ時間 3,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,000 KB
testcase_01 AC 102 ms
40,104 KB
testcase_02 AC 112 ms
41,344 KB
testcase_03 AC 114 ms
41,280 KB
testcase_04 AC 96 ms
39,732 KB
testcase_05 AC 95 ms
39,432 KB
testcase_06 AC 109 ms
41,492 KB
testcase_07 AC 111 ms
49,932 KB
testcase_08 AC 115 ms
41,320 KB
testcase_09 AC 115 ms
50,084 KB
testcase_10 AC 104 ms
39,732 KB
testcase_11 AC 109 ms
41,168 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