結果

問題 No.1298 OR XOR
ユーザー chineristACchineristAC
提出日時 2020-11-27 22:19:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 34 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 86,636 KB
実行使用メモリ 79,060 KB
最終ジャッジ日時 2023-10-01 06:30:51
合計ジャッジ時間 5,722 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
assert N&(N-1)==0
0