結果

問題 No.244 ★1のグラフの問題
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 00:14:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 3,421 ms
コンパイル使用メモリ 72,980 KB
実行使用メモリ 37,116 KB
最終ジャッジ日時 2024-11-22 04:30:16
合計ジャッジ時間 4,064 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,720 KB
testcase_01 AC 51 ms
36,492 KB
testcase_02 AC 51 ms
36,872 KB
testcase_03 AC 50 ms
36,544 KB
testcase_04 AC 48 ms
36,896 KB
testcase_05 AC 49 ms
36,728 KB
testcase_06 AC 49 ms
37,116 KB
testcase_07 AC 49 ms
36,876 KB
testcase_08 AC 51 ms
37,004 KB
testcase_09 AC 49 ms
36,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No244 {
	public static void main(String[] args) throws IOException{
		System.out.println(Integer.parseInt(new BufferedReader(new InputStreamReader(System.in)).readLine())-1);
	}
}
0