結果

問題 No.80 四角形を描こう
ユーザー k_kadorak_kadora
提出日時 2015-06-16 21:30:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-10-08 04:03:38
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,108 KB
testcase_01 AC 123 ms
53,924 KB
testcase_02 AC 116 ms
53,968 KB
testcase_03 AC 117 ms
54,192 KB
testcase_04 AC 123 ms
53,840 KB
testcase_05 AC 122 ms
54,004 KB
testcase_06 AC 120 ms
53,880 KB
testcase_07 AC 126 ms
53,908 KB
testcase_08 AC 122 ms
54,228 KB
testcase_09 AC 122 ms
54,040 KB
testcase_10 AC 107 ms
52,840 KB
testcase_11 AC 106 ms
52,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki80{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int d,res;
		d = sc.nextInt();
		if(d % 4 == 0 || d % 4 == 1){
			res = (d/4)*(d/4);
		}else{
			res = (d/4)*(d/4+1);
		}
		System.out.println(res);
	}
}
0