結果
問題 |
No.1362 [Zelkova 8th Tune] Black Sheep
|
ユーザー |
![]() |
提出日時 | 2021-02-07 09:45:05 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 183 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-07-03 22:45:27 |
合計ジャッジ時間 | 3,787 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 38 |
ソースコード
S = input() s1 = S[0] s2 = "" for i in S: if i != s1: s2 = i break if S.count(s1) == 1: print(S.index(s1),s1) if S.count(s2) == 1: print(S.index(s2),s2)