結果

問題 No.244 ★1のグラフの問題
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-07-30 13:36:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-04-15 02:56:50
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,028 KB
testcase_01 AC 116 ms
54,060 KB
testcase_02 AC 108 ms
52,880 KB
testcase_03 AC 121 ms
54,364 KB
testcase_04 AC 108 ms
53,676 KB
testcase_05 AC 112 ms
53,200 KB
testcase_06 AC 118 ms
54,156 KB
testcase_07 AC 115 ms
54,164 KB
testcase_08 AC 119 ms
54,108 KB
testcase_09 AC 105 ms
52,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

import java.util.Scanner;

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