結果

問題 No.57 ミリオンダイス
ユーザー Mcpu3Mcpu3
提出日時 2018-06-27 20:31:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 71,012 KB
実行使用メモリ 56,284 KB
最終ジャッジ日時 2023-09-13 14:32:22
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,772 KB
testcase_01 AC 124 ms
55,756 KB
testcase_02 AC 127 ms
55,780 KB
testcase_03 AC 124 ms
55,704 KB
testcase_04 AC 124 ms
55,600 KB
testcase_05 AC 126 ms
56,284 KB
testcase_06 AC 125 ms
55,516 KB
testcase_07 AC 124 ms
55,548 KB
testcase_08 AC 124 ms
55,868 KB
testcase_09 AC 125 ms
55,616 KB
testcase_10 AC 125 ms
55,692 KB
testcase_11 AC 126 ms
55,584 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