結果

問題 No.57 ミリオンダイス
ユーザー omc-testomc-test
提出日時 2016-12-14 16:08:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 3,154 ms
コンパイル使用メモリ 72,120 KB
実行使用メモリ 49,584 KB
最終ジャッジ日時 2023-08-20 06:42:51
合計ジャッジ時間 4,466 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,420 KB
testcase_01 AC 43 ms
49,204 KB
testcase_02 AC 42 ms
49,192 KB
testcase_03 AC 44 ms
49,312 KB
testcase_04 AC 43 ms
49,408 KB
testcase_05 AC 42 ms
49,204 KB
testcase_06 AC 43 ms
49,296 KB
testcase_07 AC 43 ms
49,196 KB
testcase_08 AC 43 ms
49,284 KB
testcase_09 AC 43 ms
49,264 KB
testcase_10 AC 42 ms
49,584 KB
testcase_11 AC 43 ms
49,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0057 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			System.out.println(Long.parseLong(br.readLine()) * 3.5);
		}catch(IOException e){
			e.printStackTrace();
		}
	}
}
0