結果

問題 No.83 最大マッチング
ユーザー k_kadorak_kadora
提出日時 2015-05-23 23:51:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 333 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 3,783 ms
コンパイル使用メモリ 85,796 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-07-06 06:23:29
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,620 KB
testcase_01 AC 135 ms
54,160 KB
testcase_02 AC 135 ms
54,112 KB
testcase_03 AC 137 ms
53,848 KB
testcase_04 AC 136 ms
53,860 KB
testcase_05 AC 135 ms
53,736 KB
testcase_06 AC 135 ms
54,016 KB
testcase_07 AC 135 ms
54,236 KB
testcase_08 AC 122 ms
54,456 KB
testcase_09 AC 167 ms
56,952 KB
testcase_10 AC 242 ms
56,836 KB
testcase_11 AC 333 ms
56,932 KB
testcase_12 AC 315 ms
56,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Matching{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,m;
		String out="";
		n = sc.nextInt();
		if(n%2 == 0){
			out = out + "1";
			n = n -2;
		}else{
			out = out + "7";
			n = n -3;
		}
		while(n>0){
			out = out + "1";
			n = n -2;
		}
		System.out.println(out);
	}
}
0