結果

問題 No.57 ミリオンダイス
ユーザー spacenautspacenaut
提出日時 2016-05-22 14:35:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 3,690 ms
コンパイル使用メモリ 71,848 KB
実行使用メモリ 56,472 KB
最終ジャッジ日時 2023-08-09 00:55:01
合計ジャッジ時間 4,321 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
56,124 KB
testcase_01 AC 133 ms
55,580 KB
testcase_02 AC 134 ms
56,252 KB
testcase_03 AC 133 ms
56,260 KB
testcase_04 AC 133 ms
56,000 KB
testcase_05 AC 135 ms
56,132 KB
testcase_06 AC 133 ms
56,020 KB
testcase_07 AC 133 ms
55,948 KB
testcase_08 AC 130 ms
56,472 KB
testcase_09 AC 135 ms
56,416 KB
testcase_10 AC 137 ms
56,040 KB
testcase_11 AC 134 ms
55,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0057{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		double n = (7 * sc.nextDouble()) / 2;
		System.out.println(n);
	}
}
0