結果

問題 No.80 四角形を描こう
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 17:51:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-06-07 21:42:11
合計ジャッジ時間 3,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,796 KB
testcase_01 AC 117 ms
41,664 KB
testcase_02 AC 117 ms
41,232 KB
testcase_03 AC 118 ms
41,460 KB
testcase_04 AC 117 ms
41,044 KB
testcase_05 AC 106 ms
40,296 KB
testcase_06 AC 107 ms
40,224 KB
testcase_07 AC 119 ms
41,052 KB
testcase_08 AC 119 ms
41,388 KB
testcase_09 AC 120 ms
41,180 KB
testcase_10 AC 106 ms
39,804 KB
testcase_11 AC 104 ms
39,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int pencil = sc.nextInt();
		int w = 0;
		int h = 0;
		int area = 0;
		if (pencil < 4) {System.out.println(0);}
		else {
			int n = 0;
			while (pencil >= 2) {
				if (n%2==0) {w++;}
				else {h++;}
				pencil -= 2;
				area = w*h;
				n++;
			}
			System.out.println(area);
		}
	}
}
0