結果

問題 No.83 最大マッチング
ユーザー リチウムリチウム
提出日時 2014-12-02 23:40:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 52,552 KB
最終ジャッジ日時 2024-06-11 07:45:24
合計ジャッジ時間 5,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,988 KB
testcase_01 AC 112 ms
41,244 KB
testcase_02 AC 107 ms
41,088 KB
testcase_03 AC 98 ms
39,844 KB
testcase_04 AC 109 ms
40,848 KB
testcase_05 AC 96 ms
39,868 KB
testcase_06 AC 116 ms
41,336 KB
testcase_07 AC 111 ms
41,152 KB
testcase_08 AC 101 ms
40,144 KB
testcase_09 AC 255 ms
45,628 KB
testcase_10 AC 330 ms
51,932 KB
testcase_11 AC 376 ms
52,552 KB
testcase_12 AC 370 ms
52,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;
 
public class ppp {
	
	
		
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int n=sc.nextInt();
	  int a[]={6,2,5,5,4,5,6,3,7,6};
	  if(n==2)System.out.println(1);
	  else if(n==3)System.out.println(7);
	  else if(n==4)System.out.println(11);
	  else{
		  int x=n/2;
		  if(n%2==0){
			  for(int i=0;i<n/2;i++){
				  System.out.print(1);
			  }
			  System.out.println();
		  }
		  else{
			  for(int i=0;i<n/2;i++){
				  if(i==0)System.out.print(7);
				  else System.out.print(1);
			  }
			  System.out.println();
		  }
		  
		  
		  
	  }
	  
  }}
0