結果

問題 No.57 ミリオンダイス
ユーザー spacenautspacenaut
提出日時 2016-05-22 14:35:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 73,532 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-04-26 16:51:00
合計ジャッジ時間 4,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,992 KB
testcase_01 AC 137 ms
41,444 KB
testcase_02 AC 140 ms
41,576 KB
testcase_03 AC 145 ms
41,652 KB
testcase_04 AC 139 ms
41,432 KB
testcase_05 AC 138 ms
41,504 KB
testcase_06 AC 141 ms
41,440 KB
testcase_07 AC 141 ms
41,504 KB
testcase_08 AC 136 ms
41,496 KB
testcase_09 AC 141 ms
41,912 KB
testcase_10 AC 127 ms
40,824 KB
testcase_11 AC 139 ms
41,748 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