結果

問題 No.83 最大マッチング
ユーザー rf141rf141
提出日時 2015-08-09 19:56:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 417 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 3,302 ms
コンパイル使用メモリ 76,500 KB
実行使用メモリ 50,488 KB
最終ジャッジ日時 2024-07-18 06:15:35
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,184 KB
testcase_01 AC 127 ms
41,224 KB
testcase_02 AC 129 ms
41,468 KB
testcase_03 AC 128 ms
41,560 KB
testcase_04 AC 129 ms
41,572 KB
testcase_05 AC 130 ms
41,332 KB
testcase_06 AC 115 ms
40,112 KB
testcase_07 AC 127 ms
41,492 KB
testcase_08 AC 127 ms
41,344 KB
testcase_09 AC 226 ms
45,108 KB
testcase_10 AC 366 ms
50,320 KB
testcase_11 AC 417 ms
50,488 KB
testcase_12 AC 409 ms
50,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class matching{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
                make(n);
	}
	public static void make(int n){
		if(n%2!=0){
			System.out.print("7");
			n-=3;
		}
		while(n>1){
			System.out.print("1");
			n-=2;
		}
	}
}
0