結果
問題 | No.544 Delete 7 |
ユーザー |
![]() |
提出日時 | 2017-08-23 19:01:47 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 180 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-11-21 16:28:48 |
合計ジャッジ時間 | 2,828 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 48 |
ソースコード
s = raw_input() a = "" b = "" for i in s: tmp1 = int(i) / 2 tmp2 = int(i) % 2 tmp3 = int(tmp1) + int(tmp2) a += str(tmp1) b += str(tmp3) print int(a), int(b)