結果
問題 | No.1592 Tenkei 90 |
ユーザー | wolgnik |
提出日時 | 2021-07-09 21:35:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 156 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-07-01 15:25:40 |
合計ジャッジ時間 | 1,654 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
import sys input = sys.stdin.readline S = list(input())[: -1] tenkei = list("kyoprotenkei90") if sorted(S) == sorted(tenkei): print("Yes") else: print("No")