結果

問題 No.244 ★1のグラフの問題
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 23:05:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-06-26 22:37:36
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,856 KB
testcase_01 AC 125 ms
53,936 KB
testcase_02 AC 126 ms
54,164 KB
testcase_03 AC 135 ms
54,096 KB
testcase_04 AC 133 ms
55,860 KB
testcase_05 AC 135 ms
53,632 KB
testcase_06 AC 133 ms
54,004 KB
testcase_07 AC 129 ms
53,988 KB
testcase_08 AC 128 ms
53,936 KB
testcase_09 AC 129 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no244{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		short n=stdIn.nextShort();
		System.out.println(n-1);
	}
}
0