結果

問題 No.83 最大マッチング
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 14:20:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 42,268 KB
最終ジャッジ日時 2024-06-23 23:19:10
合計ジャッジ時間 4,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,392 KB
testcase_01 AC 119 ms
40,780 KB
testcase_02 AC 147 ms
41,644 KB
testcase_03 AC 133 ms
40,564 KB
testcase_04 AC 145 ms
41,744 KB
testcase_05 AC 135 ms
40,564 KB
testcase_06 AC 151 ms
41,684 KB
testcase_07 AC 147 ms
41,732 KB
testcase_08 AC 149 ms
41,808 KB
testcase_09 AC 162 ms
41,716 KB
testcase_10 AC 165 ms
41,924 KB
testcase_11 AC 171 ms
42,268 KB
testcase_12 AC 169 ms
41,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		int N=new Scanner(System.in).nextInt();
		System.out.println(N==3?7:(N%2>0?"7":"")+String.format("%"+(N%2>0?N-3:N)/2+"s"," ").replace(' ','1'));
	}
}
0