結果

問題 No.57 ミリオンダイス
ユーザー HEGO55HEGO55
提出日時 2017-05-20 23:28:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 56,036 KB
最終ジャッジ日時 2024-09-19 00:32:28
合計ジャッジ時間 3,708 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,888 KB
testcase_01 AC 113 ms
53,916 KB
testcase_02 AC 103 ms
53,080 KB
testcase_03 AC 110 ms
54,112 KB
testcase_04 AC 98 ms
53,000 KB
testcase_05 AC 104 ms
54,028 KB
testcase_06 AC 111 ms
56,036 KB
testcase_07 AC 112 ms
53,788 KB
testcase_08 AC 126 ms
53,848 KB
testcase_09 AC 109 ms
53,928 KB
testcase_10 AC 98 ms
52,780 KB
testcase_11 AC 121 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No57{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		System.out.println(N*3.5);
	}
}
				
0