結果
| 問題 | No.544 Delete 7 |
| コンテスト | |
| ユーザー |
bellangeldindon
|
| 提出日時 | 2017-08-04 09:40:18 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 192 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 80,768 KB |
| 実行使用メモリ | 81,280 KB |
| 最終ジャッジ日時 | 2026-07-18 15:53:18 |
| 合計ジャッジ時間 | 8,914 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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