結果

問題 No.835 ジュース
ユーザー ks2mks2m
提出日時 2019-06-14 21:49:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 222 bytes
コンパイル時間 2,634 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-11-14 04:09:23
合計ジャッジ時間 3,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,056 KB
testcase_01 AC 132 ms
53,896 KB
testcase_02 AC 133 ms
53,928 KB
testcase_03 AC 141 ms
54,304 KB
testcase_04 AC 136 ms
53,872 KB
testcase_05 AC 136 ms
54,056 KB
testcase_06 AC 134 ms
54,260 KB
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		System.out.println(n * 3 / 2);
	}
}
0