結果

問題 No.57 ミリオンダイス
ユーザー mits58mits58
提出日時 2016-07-02 00:41:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 71,696 KB
実行使用メモリ 56,500 KB
最終ジャッジ日時 2023-08-09 00:55:36
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
56,008 KB
testcase_01 AC 138 ms
55,920 KB
testcase_02 AC 138 ms
56,184 KB
testcase_03 AC 137 ms
56,500 KB
testcase_04 AC 138 ms
55,660 KB
testcase_05 AC 141 ms
56,220 KB
testcase_06 AC 137 ms
55,964 KB
testcase_07 AC 138 ms
56,184 KB
testcase_08 AC 138 ms
55,672 KB
testcase_09 AC 138 ms
55,932 KB
testcase_10 AC 136 ms
55,892 KB
testcase_11 AC 139 ms
55,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			double n=sc.nextDouble();
			System.out.println(n*3.5);
		}
	}
}
0