結果

問題 No.835 ジュース
ユーザー fal_rndfal_rnd
提出日時 2019-11-22 00:51:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-10-11 02:27:24
合計ジャッジ時間 3,958 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,192 KB
testcase_01 AC 134 ms
41,276 KB
testcase_02 AC 122 ms
40,088 KB
testcase_03 AC 134 ms
41,408 KB
testcase_04 AC 129 ms
41,108 KB
testcase_05 AC 120 ms
40,248 KB
testcase_06 AC 134 ms
41,020 KB
testcase_07 AC 132 ms
41,076 KB
testcase_08 AC 132 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String[] $) {
		Scanner s=new Scanner(System.in);
		int n=s.nextInt();
		System.out.println(n+n/2);
	}
}
0