結果

問題 No.83 最大マッチング
ユーザー ieneko18
提出日時 2016-11-28 19:21:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 76,284 KB
実行使用メモリ 45,300 KB
最終ジャッジ日時 2024-11-27 12:42:11
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		String s="";
		if(n%2==1){
			s+="7";
			n-=3;
		}
		for(int i=0;i<n/2;i++){
			s+="1";
		}
		System.out.println(s);
		
	}
}
0