結果
| 問題 | No.197 手品 |
| コンテスト | |
| ユーザー |
tookunn_1213
|
| 提出日時 | 2015-04-28 23:35:14 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 195 bytes |
| 記録 | |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 77,348 KB |
| 最終ジャッジ日時 | 2025-12-03 14:50:32 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 34 WA * 9 |
ソースコード
before = list(raw_input()) N = int(raw_input()) after = list(raw_input()) count = 0 for i in range(3): if before[i] != after[i]: count+=1 if count <= N: print 'FAILURE' else: print 'SUCCESS'
tookunn_1213