結果

問題 No.57 ミリオンダイス
ユーザー spaciaspacia
提出日時 2015-12-21 22:39:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 52,324 KB
最終ジャッジ日時 2024-11-14 06:02:03
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,200 KB
testcase_01 AC 53 ms
50,056 KB
testcase_02 AC 53 ms
50,412 KB
testcase_03 AC 54 ms
50,136 KB
testcase_04 AC 53 ms
52,324 KB
testcase_05 AC 53 ms
49,972 KB
testcase_06 AC 53 ms
50,560 KB
testcase_07 AC 53 ms
50,260 KB
testcase_08 AC 53 ms
50,360 KB
testcase_09 AC 54 ms
50,336 KB
testcase_10 AC 55 ms
50,216 KB
testcase_11 AC 55 ms
50,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main57 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		System.out.println((double)Integer.parseInt(br.readLine()) * 3.5);
	}
}
0