結果

問題 No.80 四角形を描こう
ユーザー kuramukuramu
提出日時 2016-02-11 10:11:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 73,032 KB
実行使用メモリ 37,192 KB
最終ジャッジ日時 2024-10-08 05:02:50
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,548 KB
testcase_01 AC 48 ms
36,540 KB
testcase_02 AC 45 ms
36,956 KB
testcase_03 AC 51 ms
36,672 KB
testcase_04 AC 48 ms
36,784 KB
testcase_05 AC 47 ms
37,060 KB
testcase_06 AC 46 ms
37,192 KB
testcase_07 AC 46 ms
37,040 KB
testcase_08 AC 47 ms
36,876 KB
testcase_09 AC 45 ms
36,804 KB
testcase_10 AC 47 ms
37,192 KB
testcase_11 AC 47 ms
37,192 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 {
	    	  int D = Integer.parseInt(stdReader.readLine());   	  
	    	  D /= 2;
	    	  int a = D/2;
	    	  int b = D-a;
	    	  System.out.println(a*b);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0