結果
| 問題 | No.3084 Identify f(x) |
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 18:05:46 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 109 bytes |
| 記録 | |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 12,160 KB |
| 最終ジャッジ日時 | 2026-07-11 18:41:26 |
| 合計ジャッジ時間 | 7,275 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 6 |
ソースコード
n = int(input())
a = list(map(int, input().split()))
result = 0
for num in a:
result ^= num
print(result)
gew1fw