結果

問題 No.244 ★1のグラフの問題
ユーザー YatsukuYatsuku
提出日時 2015-12-05 12:55:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 73,832 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-10-04 12:35:09
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,100 KB
testcase_01 AC 125 ms
41,392 KB
testcase_02 AC 125 ms
41,412 KB
testcase_03 AC 127 ms
41,320 KB
testcase_04 AC 128 ms
41,512 KB
testcase_05 AC 127 ms
41,408 KB
testcase_06 AC 128 ms
41,428 KB
testcase_07 AC 128 ms
41,244 KB
testcase_08 AC 128 ms
41,248 KB
testcase_09 AC 126 ms
41,080 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