結果
問題 |
No.1674 Introduction to XOR
|
ユーザー |
|
提出日時 | 2021-09-10 22:32:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 240 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-12 01:24:58 |
合計ジャッジ時間 | 1,885 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 21 |
ソースコード
N = int(input()) A = list(map(int,input().split())) def main(): for x in range(1,10**18): for Ai in A: if (x**2) ^ Ai < Ai: break return print(x**2) if __name__ == "__name__": main()