結果

問題 No.57 ミリオンダイス
ユーザー spaciaspacia
提出日時 2015-12-21 22:39:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 37,228 KB
最終ジャッジ日時 2024-04-26 16:43:56
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,660 KB
testcase_01 AC 53 ms
37,064 KB
testcase_02 AC 51 ms
37,228 KB
testcase_03 AC 51 ms
36,532 KB
testcase_04 AC 51 ms
36,956 KB
testcase_05 AC 52 ms
37,216 KB
testcase_06 AC 51 ms
36,692 KB
testcase_07 AC 51 ms
37,152 KB
testcase_08 AC 52 ms
36,808 KB
testcase_09 AC 50 ms
36,692 KB
testcase_10 AC 51 ms
36,956 KB
testcase_11 AC 53 ms
36,984 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