結果

問題 No.3108 Luke or Bishop
ユーザー issaimaru
提出日時 2025-04-18 20:37:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2025-04-18 20:38:02
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

g_x,g_y = input().split()

if g_x == g_y:
    print(1)
else:
    print(2)
0