結果

問題 No.111 あばばばば
ユーザー kuramukuramu
提出日時 2016-01-22 21:38:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 73,420 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-09-21 15:01:58
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,008 KB
testcase_01 AC 45 ms
37,100 KB
testcase_02 AC 45 ms
36,872 KB
testcase_03 AC 44 ms
36,848 KB
testcase_04 AC 44 ms
36,544 KB
testcase_05 AC 43 ms
36,668 KB
testcase_06 AC 46 ms
36,680 KB
testcase_07 AC 46 ms
36,964 KB
testcase_08 AC 49 ms
36,992 KB
testcase_09 AC 46 ms
36,976 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());
	    	  System.out.println((N/2)*(N/2));
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0