結果

問題 No.244 ★1のグラフの問題
ユーザー YatsukuYatsuku
提出日時 2015-12-05 12:55:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-04-15 03:08:02
合計ジャッジ時間 4,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,152 KB
testcase_01 AC 109 ms
53,316 KB
testcase_02 AC 109 ms
52,732 KB
testcase_03 AC 121 ms
53,856 KB
testcase_04 AC 125 ms
54,176 KB
testcase_05 AC 116 ms
53,460 KB
testcase_06 AC 122 ms
54,228 KB
testcase_07 AC 121 ms
53,864 KB
testcase_08 AC 125 ms
54,204 KB
testcase_09 AC 126 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_244 {

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