結果
| 問題 | No.932 解法破綻!高橋君 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-12-05 16:53:05 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 298 bytes | 
| コンパイル時間 | 82 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 11,264 KB | 
| 最終ジャッジ日時 | 2024-07-07 07:53:32 | 
| 合計ジャッジ時間 | 1,652 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 WA * 4 | 
ソースコード
import sys
S = input()
S += ','
F = 'Failed...'
D = 'Done!'
for i in range(len(S)):
    if i % 3 == 0 and S[i] != 'A':
        print(F)
        exit()
    elif i % 3 == 1 and S[i] != 'C':
        print(F)
        exit()
    elif i & 3 == 2 and S[i] != ',':
        print(F)
        exit()
print(D)
            
            
            
        