結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
fal_rnd
|
| 提出日時 | 2016-12-28 00:42:00 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 436 bytes |
| コンパイル時間 | 1,903 ms |
| コンパイル使用メモリ | 74,776 KB |
| 実行使用メモリ | 56,880 KB |
| 最終ジャッジ日時 | 2024-12-15 05:00:13 |
| 合計ジャッジ時間 | 7,477 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 10 WA * 5 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=i+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