結果
| 問題 |
No.3108 Luke or Bishop
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-19 17:14:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 102 bytes |
| コンパイル時間 | 486 ms |
| コンパイル使用メモリ | 11,776 KB |
| 実行使用メモリ | 11,392 KB |
| 最終ジャッジ日時 | 2025-04-19 17:14:32 |
| 合計ジャッジ時間 | 2,857 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 26 |
ソースコード
x = int(input()) y = int(input()) if x == y or x == -y or x == 0 or y == 0: print(1) else: print(2)