結果

問題 No.835 ジュース
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:22:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 4,556 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-11-19 07:38:03
合計ジャッジ時間 5,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,876 KB
testcase_01 AC 129 ms
54,380 KB
testcase_02 AC 131 ms
54,024 KB
testcase_03 AC 129 ms
54,084 KB
testcase_04 AC 130 ms
54,076 KB
testcase_05 AC 117 ms
53,040 KB
testcase_06 AC 116 ms
52,724 KB
testcase_07 AC 130 ms
54,020 KB
testcase_08 AC 129 ms
53,992 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