結果
問題 | No.2819 Binary Binary-Operator |
ユーザー |
|
提出日時 | 2024-07-26 21:52:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 306 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 70,644 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-26 21:52:37 |
合計ジャッジ時間 | 7,949 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 64 |
ソースコード
X,Y=list(map(int,input().split())) if X==0 and Y==0: print(4) print(0,0,0,0) t=int(input()) print(t) elif X==1 and Y==0: print(4) print(1,0,0,0) t=int(input()) print(t) elif X==0 and Y==1: print(4) print(0,1,1,1) t=int(input()) print(t) else: print(4) print(1,1,1,1) t=int(input()) print(t)