結果

問題 No.80 四角形を描こう
ユーザー tsunabittsunabit
提出日時 2020-01-09 09:18:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 4,677 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-23 03:41:13
合計ジャッジ時間 5,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,556 KB
testcase_01 AC 99 ms
41,244 KB
testcase_02 AC 112 ms
41,252 KB
testcase_03 AC 103 ms
41,464 KB
testcase_04 AC 103 ms
41,556 KB
testcase_05 AC 114 ms
41,588 KB
testcase_06 AC 104 ms
41,248 KB
testcase_07 AC 120 ms
41,232 KB
testcase_08 AC 125 ms
41,548 KB
testcase_09 AC 113 ms
41,504 KB
testcase_10 AC 109 ms
40,012 KB
testcase_11 AC 118 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No80 {
//	private static Set<String> set = new HashSet<String>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d = sc.nextInt();
		int t = d / 4;
		int y = d % 4 / 2;
		System.out.println(t * (y + t));
	}
}
0