結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
fal_rnd
|
| 提出日時 | 2016-12-28 00:45:05 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 434 bytes |
| コンパイル時間 | 2,286 ms |
| コンパイル使用メモリ | 73,968 KB |
| 実行使用メモリ | 58,820 KB |
| 最終ジャッジ日時 | 2024-12-15 05:00:24 |
| 合計ジャッジ時間 | 9,302 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 15 RE * 3 |
ソースコード
package src;
import java.util.*;
class A{
static Scanner s = new Scanner(System.in);
static boolean[] dp=new boolean[16384];
public static void main(String[] args) {
for(int i=s.nextInt();i>0;--i)
dp[s.nextInt()]=true;
dp[0]=true;
for(int i=1;i<dp.length;++i) {
if(dp[i]) for(int j=1;j<dp.length;j++) {
if(dp[j])
dp[i^j]=true;
}
}
int c=0;
for(boolean b:dp)
if(b)c++;
System.out.println(c);
}
}
fal_rnd