結果

問題 No.835 ジュース
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:22:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 5,459 ms
コンパイル使用メモリ 71,300 KB
実行使用メモリ 56,136 KB
最終ジャッジ日時 2023-08-12 08:19:19
合計ジャッジ時間 6,985 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,452 KB
testcase_01 AC 121 ms
55,716 KB
testcase_02 AC 119 ms
56,136 KB
testcase_03 AC 120 ms
55,760 KB
testcase_04 AC 118 ms
55,576 KB
testcase_05 AC 120 ms
55,844 KB
testcase_06 AC 119 ms
56,048 KB
testcase_07 AC 121 ms
56,128 KB
testcase_08 AC 120 ms
55,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;

public class Con835 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();

		System.out.println(N + N / 2);

	}

}
0