結果

問題 No.244 ★1のグラフの問題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-21 22:31:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-19 19:49:44
合計ジャッジ時間 4,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,184 KB
testcase_01 AC 115 ms
53,936 KB
testcase_02 AC 115 ms
53,724 KB
testcase_03 AC 109 ms
53,012 KB
testcase_04 AC 118 ms
54,276 KB
testcase_05 AC 104 ms
52,928 KB
testcase_06 AC 114 ms
54,064 KB
testcase_07 AC 117 ms
53,936 KB
testcase_08 AC 108 ms
52,980 KB
testcase_09 AC 110 ms
53,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con244 {

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

	}

}
0