結果

問題 No.83 最大マッチング
ユーザー kuramukuramu
提出日時 2016-01-21 19:59:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 51,100 KB
最終ジャッジ日時 2024-09-21 14:56:44
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,136 KB
testcase_01 AC 55 ms
36,964 KB
testcase_02 AC 56 ms
37,224 KB
testcase_03 AC 55 ms
36,908 KB
testcase_04 AC 55 ms
37,136 KB
testcase_05 WA -
testcase_06 AC 56 ms
36,728 KB
testcase_07 WA -
testcase_08 AC 55 ms
37,016 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 86 ms
38,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(stdReader.readLine());
		StringBuilder sb = new StringBuilder();
		if(n%2==0){
			for(int i=0;i<n/2;i++) sb.append("1"); 
		}else{
			while(n>2){
				sb.append("7");
				n-=3;
			}
			if(n==2) sb.append("1");
		}
		System.out.println(sb.toString());
	}
}
0