結果

問題 No.83 最大マッチング
ユーザー r.suzukir.suzuki
提出日時 2016-01-14 16:51:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 3,796 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-09-19 19:02:00
合計ジャッジ時間 6,264 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,152 KB
testcase_01 AC 121 ms
39,880 KB
testcase_02 AC 135 ms
41,012 KB
testcase_03 AC 143 ms
41,160 KB
testcase_04 AC 133 ms
41,004 KB
testcase_05 AC 136 ms
41,200 KB
testcase_06 AC 138 ms
41,656 KB
testcase_07 AC 136 ms
41,352 KB
testcase_08 AC 135 ms
41,328 KB
testcase_09 AC 144 ms
40,968 KB
testcase_10 AC 146 ms
41,600 KB
testcase_11 AC 142 ms
41,596 KB
testcase_12 AC 156 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_83{
	public static void main(String[] args){
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int match = sc.nextInt();
		StringBuilder sb = new StringBuilder("");
		
		for(int i = 0;i < match/2;i++){
			sb.append('1');
		}
		
		if(match%2 != 0){
			sb.setCharAt(0,'7');
		}
		
		System.out.println(sb);
		
	}
}
0