結果

問題 No.83 最大マッチング
ユーザー Vir_MeL0Vir_MeL0
提出日時 2017-03-22 23:14:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 72,872 KB
実行使用メモリ 48,796 KB
最終ジャッジ日時 2024-07-05 17:49:16
合計ジャッジ時間 4,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,992 KB
testcase_01 AC 51 ms
36,716 KB
testcase_02 AC 50 ms
36,800 KB
testcase_03 AC 51 ms
36,696 KB
testcase_04 AC 52 ms
36,880 KB
testcase_05 AC 50 ms
36,528 KB
testcase_06 AC 51 ms
36,556 KB
testcase_07 AC 51 ms
36,804 KB
testcase_08 AC 51 ms
36,548 KB
testcase_09 AC 122 ms
38,592 KB
testcase_10 AC 289 ms
48,640 KB
testcase_11 AC 352 ms
48,796 KB
testcase_12 AC 343 ms
48,628 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-3)/2;i++)
				System.out.print("1");
			System.out.println();
		}
	}
}
0