結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
42,044 KB
testcase_01 AC 115 ms
40,360 KB
testcase_02 AC 151 ms
41,736 KB
testcase_03 WA -
testcase_04 AC 146 ms
41,872 KB
testcase_05 WA -
testcase_06 AC 149 ms
41,708 KB
testcase_07 WA -
testcase_08 AC 143 ms
41,764 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 170 ms
41,984 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":String.format("%"+(N%2>0?N-3:N)/2+"s"," ").replace(' ','1')+(N%2>0?"7":""));
	}
}
0