結果

問題 No.244 ★1のグラフの問題
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-19 19:09:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-10-04 12:42:12
合計ジャッジ時間 3,525 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,016 KB
testcase_01 AC 106 ms
41,272 KB
testcase_02 AC 103 ms
41,424 KB
testcase_03 AC 100 ms
41,176 KB
testcase_04 AC 104 ms
41,156 KB
testcase_05 AC 117 ms
41,272 KB
testcase_06 AC 114 ms
41,372 KB
testcase_07 AC 114 ms
41,328 KB
testcase_08 AC 100 ms
41,296 KB
testcase_09 AC 105 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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