結果

問題 No.111 あばばばば
ユーザー kuramukuramu
提出日時 2016-01-22 21:31:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 37,656 KB
最終ジャッジ日時 2024-09-21 15:01:41
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,672 KB
testcase_01 AC 48 ms
36,544 KB
testcase_02 AC 50 ms
37,112 KB
testcase_03 AC 402 ms
37,484 KB
testcase_04 AC 45 ms
36,532 KB
testcase_05 AC 57 ms
37,056 KB
testcase_06 AC 62 ms
37,504 KB
testcase_07 AC 94 ms
37,656 KB
testcase_08 AC 223 ms
37,308 KB
testcase_09 AC 48 ms
37,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  long N = Long.parseLong(stdReader.readLine());
	    	  long sum = 0;
	    	  long index = 0;
	    	  while(N >=3){
	    		  sum += index*2+1;
	    		  index++;
	    		  N -= 2;
	    	  }
	    	  System.out.println(sum);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0