結果

問題 No.244 ★1のグラフの問題
ユーザー ぴろずぴろず
提出日時 2015-07-17 22:20:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-04-15 02:48:36
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,920 KB
testcase_01 AC 120 ms
53,884 KB
testcase_02 AC 108 ms
52,972 KB
testcase_03 AC 108 ms
52,856 KB
testcase_04 AC 107 ms
52,864 KB
testcase_05 AC 118 ms
53,992 KB
testcase_06 AC 119 ms
54,136 KB
testcase_07 AC 121 ms
54,148 KB
testcase_08 AC 123 ms
54,096 KB
testcase_09 AC 108 ms
54,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no244;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		System.out.println(n - 1);
	}

}
0