結果

問題 No.4 おもりと天秤
ユーザー juugayajuugaya
提出日時 2020-07-29 10:16:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 1,818 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-06-28 21:28:06
合計ジャッジ時間 5,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,452 KB
testcase_01 AC 101 ms
41,452 KB
testcase_02 WA -
testcase_03 AC 100 ms
41,412 KB
testcase_04 AC 109 ms
41,172 KB
testcase_05 AC 127 ms
41,924 KB
testcase_06 WA -
testcase_07 AC 113 ms
42,308 KB
testcase_08 AC 132 ms
42,108 KB
testcase_09 AC 119 ms
42,436 KB
testcase_10 AC 113 ms
42,268 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 116 ms
41,444 KB
testcase_17 AC 118 ms
41,244 KB
testcase_18 WA -
testcase_19 AC 118 ms
42,220 KB
testcase_20 AC 136 ms
42,156 KB
testcase_21 AC 133 ms
42,096 KB
testcase_22 AC 140 ms
42,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      String lo = sc.nextLine();
      int n =Integer.parseInt(lo);
      String l=sc.nextLine();
      int b[] = new int[n];
      //String [] ll=l.split(" ");
      //int a =Integer.parseInt(ll[1]);
      int sum1=0;
    // int sum2=0;
        for(int i=0;i<n;i++){
          String [] ll=l.split(" ");
         
          b[i]=Integer.parseInt(ll[i]);
          sum1=sum1+b[i];
          
    //  System.out.println(l);
  }
  if(sum1%2==0){
             System.out.println("possible");
          }
      
      else{System.out.println("impossible");}
        }
}
0