結果

問題 No.244 ★1のグラフの問題
ユーザー ぴろずぴろず
提出日時 2015-07-17 22:20:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 76,980 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-10-04 11:44:50
合計ジャッジ時間 3,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,864 KB
testcase_01 AC 106 ms
52,944 KB
testcase_02 AC 113 ms
54,000 KB
testcase_03 AC 117 ms
54,388 KB
testcase_04 AC 117 ms
53,976 KB
testcase_05 AC 118 ms
54,168 KB
testcase_06 AC 114 ms
54,352 KB
testcase_07 AC 121 ms
53,916 KB
testcase_08 AC 102 ms
53,000 KB
testcase_09 AC 107 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no244;

import java.util.Scanner;

public class Main {

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

}
0