結果

問題 No.244 ★1のグラフの問題
ユーザー ちよちゃん
提出日時 2016-05-25 15:59:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-10-04 12:53:14
合計ジャッジ時間 4,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki244 {
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int num = scan.nextInt();
		scan.close();
		System.out.println(num -1);
	}
}
0