結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-28 19:21:15
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,120 KB
testcase_01 AC 112 ms
41,112 KB
testcase_02 AC 110 ms
40,792 KB
testcase_03 AC 103 ms
40,008 KB
testcase_04 AC 104 ms
40,224 KB
testcase_05 AC 105 ms
40,176 KB
testcase_06 AC 105 ms
40,140 KB
testcase_07 AC 103 ms
40,140 KB
testcase_08 AC 115 ms
41,156 KB
testcase_09 AC 135 ms
44,876 KB
testcase_10 AC 214 ms
44,620 KB
testcase_11 AC 288 ms
44,720 KB
testcase_12 AC 308 ms
45,300 KB
権限があれば一括ダウンロードができます

ソースコード

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