結果

問題 No.57 ミリオンダイス
ユーザー shinshin
提出日時 2022-05-17 07:51:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 3,951 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 37,120 KB
最終ジャッジ日時 2024-09-15 01:27:03
合計ジャッジ時間 4,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,120 KB
testcase_01 AC 52 ms
36,804 KB
testcase_02 AC 53 ms
36,924 KB
testcase_03 AC 53 ms
36,740 KB
testcase_04 AC 53 ms
36,924 KB
testcase_05 AC 52 ms
36,740 KB
testcase_06 AC 52 ms
36,788 KB
testcase_07 AC 53 ms
36,952 KB
testcase_08 AC 53 ms
36,944 KB
testcase_09 AC 53 ms
36,788 KB
testcase_10 AC 53 ms
36,800 KB
testcase_11 AC 53 ms
36,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No57 {

	public static void main(String[] args) throws IOException{
		//ミリオンダイス
		System.out.println(Double.parseDouble(readStr()[0]) * 3.5);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0