結果

問題 No.2312 Turtleman and Gaming Console
ユーザー YU Hirose
提出日時 2025-11-30 22:00:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 160 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 410 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 53,656 KB
最終ジャッジ日時 2025-11-30 22:00:49
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

input()
a = input()
b = input()
for x, y in zip(a, b):
    if x == y == "o":
        print("Lucky Turtleman")
        break
else:
    print("Unlucky Turtleman")
0