結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-28 19:21:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 306 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 76,024 KB
実行使用メモリ 45,740 KB
最終ジャッジ日時 2024-05-05 14:39:15
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,124 KB
testcase_01 AC 117 ms
41,404 KB
testcase_02 AC 113 ms
41,380 KB
testcase_03 AC 113 ms
41,284 KB
testcase_04 AC 101 ms
40,016 KB
testcase_05 AC 100 ms
40,180 KB
testcase_06 AC 112 ms
41,388 KB
testcase_07 AC 112 ms
40,980 KB
testcase_08 AC 112 ms
41,400 KB
testcase_09 AC 132 ms
45,528 KB
testcase_10 AC 220 ms
45,228 KB
testcase_11 AC 306 ms
45,740 KB
testcase_12 AC 293 ms
44,984 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