結果

問題 No.83 最大マッチング
ユーザー mits58mits58
提出日時 2016-07-02 14:52:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 52,476 KB
最終ジャッジ日時 2024-10-12 00:47:39
合計ジャッジ時間 5,166 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,316 KB
testcase_01 AC 123 ms
41,040 KB
testcase_02 AC 124 ms
41,016 KB
testcase_03 WA -
testcase_04 AC 118 ms
41,120 KB
testcase_05 WA -
testcase_06 AC 125 ms
41,260 KB
testcase_07 WA -
testcase_08 AC 125 ms
40,920 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 413 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			if(n==2) System.out.println(1);
			else if(n==3) System.out.println(7);
			else{
				for(int i=0;i<n/2;i++) System.out.print(1);
				System.out.println();
			}
		}
	}
}
0