結果

問題 No.57 ミリオンダイス
ユーザー mits58mits58
提出日時 2016-07-02 00:41:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-04-26 16:51:30
合計ジャッジ時間 4,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,764 KB
testcase_01 AC 137 ms
41,444 KB
testcase_02 AC 128 ms
40,968 KB
testcase_03 AC 138 ms
41,256 KB
testcase_04 AC 135 ms
41,520 KB
testcase_05 AC 123 ms
41,108 KB
testcase_06 AC 123 ms
40,676 KB
testcase_07 AC 136 ms
41,540 KB
testcase_08 AC 139 ms
41,524 KB
testcase_09 AC 143 ms
41,604 KB
testcase_10 AC 123 ms
40,980 KB
testcase_11 AC 132 ms
40,900 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