結果
| 問題 | No.1592 Tenkei 90 |
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2021-07-09 21:21:53 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 1,000 ms |
| コード長 | 178 bytes |
| 記録 | |
| コンパイル時間 | 280 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2026-03-22 17:07:06 |
| 合計ジャッジ時間 | 1,501 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_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')
とりゐ