結果

問題 No.244 ★1のグラフの問題
ユーザー SuunnSuunn
提出日時 2018-11-22 09:16:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-06 21:44:28
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,452 KB
testcase_01 AC 137 ms
41,596 KB
testcase_02 AC 137 ms
41,416 KB
testcase_03 AC 134 ms
41,196 KB
testcase_04 AC 136 ms
41,172 KB
testcase_05 AC 136 ms
41,164 KB
testcase_06 AC 135 ms
41,216 KB
testcase_07 AC 134 ms
41,516 KB
testcase_08 AC 137 ms
41,648 KB
testcase_09 AC 139 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		System.out.println(N-1);
	}
	

}
0