結果

問題 No.57 ミリオンダイス
ユーザー mits58mits58
提出日時 2016-07-02 00:41:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-11-14 06:10:11
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,112 KB
testcase_01 AC 144 ms
54,432 KB
testcase_02 AC 146 ms
54,392 KB
testcase_03 AC 144 ms
54,280 KB
testcase_04 AC 143 ms
54,348 KB
testcase_05 AC 144 ms
54,300 KB
testcase_06 AC 144 ms
54,384 KB
testcase_07 AC 145 ms
54,304 KB
testcase_08 AC 146 ms
54,396 KB
testcase_09 AC 147 ms
54,236 KB
testcase_10 AC 145 ms
54,428 KB
testcase_11 AC 145 ms
54,180 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