結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,488 KB
testcase_01 AC 97 ms
41,600 KB
testcase_02 AC 108 ms
41,388 KB
testcase_03 AC 98 ms
41,444 KB
testcase_04 AC 99 ms
41,136 KB
testcase_05 AC 110 ms
41,704 KB
testcase_06 AC 118 ms
41,176 KB
testcase_07 AC 103 ms
40,332 KB
testcase_08 AC 111 ms
41,108 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