結果

問題 No.57 ミリオンダイス
ユーザー Mcpu3Mcpu3
提出日時 2018-06-27 20:31:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 3,620 ms
コンパイル使用メモリ 73,772 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-06-30 23:14:01
合計ジャッジ時間 4,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,128 KB
testcase_01 AC 132 ms
56,096 KB
testcase_02 AC 131 ms
54,276 KB
testcase_03 AC 132 ms
54,132 KB
testcase_04 AC 128 ms
53,980 KB
testcase_05 AC 129 ms
54,112 KB
testcase_06 AC 130 ms
53,976 KB
testcase_07 AC 130 ms
54,168 KB
testcase_08 AC 130 ms
54,280 KB
testcase_09 AC 128 ms
53,928 KB
testcase_10 AC 129 ms
53,928 KB
testcase_11 AC 129 ms
54,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no57{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt();
		System.out.print(3.5*n);
	}
}
0