結果

問題 No.244 ★1のグラフの問題
ユーザー kou6839kou6839
提出日時 2015-07-18 01:32:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-10-04 12:00:49
合計ジャッジ時間 3,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,452 KB
testcase_01 AC 122 ms
41,716 KB
testcase_02 AC 121 ms
41,296 KB
testcase_03 AC 126 ms
41,088 KB
testcase_04 AC 114 ms
40,104 KB
testcase_05 AC 121 ms
41,220 KB
testcase_06 AC 121 ms
41,300 KB
testcase_07 AC 123 ms
41,372 KB
testcase_08 AC 107 ms
41,424 KB
testcase_09 AC 112 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main {
	static int rec(int num){
		if(num==1) return 1;
		else return rec(num-1)+num;
	}
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
    	Scanner sc = new Scanner(System.in);
    	System.out.println(sc.nextInt()-1);
    }
}
0