結果
| 問題 | No.548 国士無双 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-31 11:51:22 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 101 ms / 2,000 ms |
| コード長 | 279 bytes |
| 記録 | |
| コンパイル時間 | 187 ms |
| コンパイル使用メモリ | 77,728 KB |
| 最終ジャッジ日時 | 2025-12-04 00:25:27 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
#yuki_548 r='abcdefghijklm' s=raw_input() l=[] for x in r: l.append(s.count(x)) if l.count(2)>=2 or l.count(0)>=2: print 'Impossible' elif l.count(2)==1 and l.count(0)==1: pos=l.index(0) print r[pos] elif l.count(2)==0 and l.count(0)==0: for i in xrange(13): print r[i]