結果

問題 No.80 四角形を描こう
ユーザー holegumaholeguma
提出日時 2015-08-14 15:03:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 412 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 50,524 KB
最終ジャッジ日時 2024-10-08 04:06:53
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,448 KB
testcase_01 AC 48 ms
50,320 KB
testcase_02 AC 49 ms
50,524 KB
testcase_03 AC 48 ms
50,388 KB
testcase_04 AC 50 ms
50,388 KB
testcase_05 AC 48 ms
50,388 KB
testcase_06 AC 48 ms
50,316 KB
testcase_07 AC 49 ms
50,176 KB
testcase_08 AC 49 ms
50,388 KB
testcase_09 AC 51 ms
50,020 KB
testcase_10 AC 51 ms
50,380 KB
testcase_11 AC 51 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{

static final PrintWriter out=new PrintWriter(System.out);

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
int d=Integer.parseInt(line);
if(d<4) out.println(0);
else{
d/=2;
int d1=d/2;
out.println((d-d1)*d1);
}
out.flush();
}
}
}
0