結果

問題 No.83 最大マッチング
ユーザー shinwisteriashinwisteria
提出日時 2019-01-22 20:39:22
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-16 04:18:29
合計ジャッジ時間 5,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,576 KB
testcase_01 AC 126 ms
41,164 KB
testcase_02 AC 125 ms
40,916 KB
testcase_03 WA -
testcase_04 AC 125 ms
40,968 KB
testcase_05 WA -
testcase_06 AC 129 ms
40,936 KB
testcase_07 WA -
testcase_08 AC 130 ms
41,068 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 140 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No83 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		s.close();

		StringBuilder sb = new StringBuilder();
		for(int i = 0;i < N/2 - 1;i++){
			sb.append("1");
		}
		if(N % 2 == 1){
			sb.append("7");
		}else{
			sb.append("1");
		}
		System.out.println(sb);

	}

}
0