結果
| 問題 | No.544 Delete 7 |
| コンテスト | |
| ユーザー |
bellangeldindon
|
| 提出日時 | 2017-08-04 09:40:18 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 192 bytes |
| 記録 | |
| コンパイル時間 | 147 ms |
| コンパイル使用メモリ | 77,444 KB |
| 最終ジャッジ日時 | 2025-12-04 00:26:30 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 4 |
| other | RE * 48 |
ソースコード
s = raw_input() a = [] x = '' for i in range(0, len(s)): if s[i] == '7': a[i] = '1' else: a[i] = '0' for i in range(0, len(s)): x = x + a[i] print str(int(s)-int(x)) + ' ' + str(int(x))
bellangeldindon