結果
| 問題 | No.1592 Tenkei 90 |
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2021-07-09 21:21:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 1,000 ms |
| + 323µs | |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 756 ms |
| コンパイル使用メモリ | 96,100 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-03 08:57:38 |
| 合計ジャッジ時間 | 2,687 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
s=input()
a='kyoprotenkei90'
flag=True
for i in a:
if i not in s:
flag=False
cnt=0
for i in s:
if i=='o':
cnt+=1
if cnt>1 and flag:
print('Yes')
else:
print('No')
とりゐ