結果

問題 No.83 最大マッチング
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 14:15:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 42,284 KB
最終ジャッジ日時 2024-06-23 23:18:30
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,728 KB
testcase_01 AC 128 ms
41,252 KB
testcase_02 AC 133 ms
40,456 KB
testcase_03 AC 145 ms
41,588 KB
testcase_04 AC 148 ms
41,844 KB
testcase_05 AC 145 ms
41,932 KB
testcase_06 AC 147 ms
41,844 KB
testcase_07 AC 147 ms
41,680 KB
testcase_08 AC 148 ms
41,732 KB
testcase_09 AC 158 ms
41,848 KB
testcase_10 AC 155 ms
41,076 KB
testcase_11 AC 167 ms
42,284 KB
testcase_12 AC 168 ms
42,092 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