結果

問題 No.494 yukicoder
ユーザー 2329 N
提出日時 2020-08-30 22:12:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-15 15:40:51
合計ジャッジ時間 1,067 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

s_list = list(s)
#print(s, s_list)

if "y" not in s_list:
    print("y")
elif "u" not in s_list:
    print("u") 
elif "k" not in s_list:
    print("k")
elif "i" not in s_list:
    print("i")
elif "c" not in s_list:
    print("c")
elif "o" not in s_list:
    print("o") 
elif "d" not in s_list:
    print("d") 
elif "e" not in s_list:
    print("e")
elif "r" not in s_list:
    print("r") 
0