結果

問題 No.83 最大マッチング
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 14:21:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 80,960 KB
実行使用メモリ 43,060 KB
最終ジャッジ日時 2024-06-23 23:19:18
合計ジャッジ時間 5,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
42,380 KB
testcase_01 AC 136 ms
41,320 KB
testcase_02 AC 164 ms
42,584 KB
testcase_03 AC 169 ms
42,640 KB
testcase_04 AC 168 ms
42,560 KB
testcase_05 AC 167 ms
42,588 KB
testcase_06 AC 168 ms
42,400 KB
testcase_07 AC 164 ms
42,776 KB
testcase_08 AC 162 ms
42,436 KB
testcase_09 AC 176 ms
42,968 KB
testcase_10 AC 184 ms
42,864 KB
testcase_11 AC 183 ms
42,908 KB
testcase_12 AC 175 ms
43,060 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?"7%":"%")+(N%2>0?N-3:N)/2+"s"," ").replace(' ','1'));
	}
}
0