結果

問題 No.83 最大マッチング
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 23:13:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 73,064 KB
実行使用メモリ 48,860 KB
最終ジャッジ日時 2024-07-05 17:48:58
合計ジャッジ時間 4,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,056 KB
testcase_01 WA -
testcase_02 AC 51 ms
36,508 KB
testcase_03 WA -
testcase_04 AC 50 ms
36,556 KB
testcase_05 WA -
testcase_06 AC 51 ms
36,860 KB
testcase_07 WA -
testcase_08 AC 51 ms
36,512 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 355 ms
48,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class Main{
	public static void main(String[] args)throws IOException{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		String str=br.readLine();
		int N=Integer.parseInt(str);
		if(N%2==0){
			for(int i=0;i<N/2;i++)
				System.out.print("1");
			System.out.println();
		}else{
			System.out.print("7");
			for(int i=0;i<(N-1)/2;i++)
				System.out.print("1");
			System.out.println();
		}
	}
}
0