CF375A.Divisible by Seven

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have number aa , whose decimal representation quite luckily contains digits 1, 6, 8, 9. Rearrange the digits in its decimal representation so that the resulting number will be divisible by 7.

Number aa doesn't contain any leading zeroes and contains digits 1, 6, 8, 9 (it also can contain another digits). The resulting number also mustn't contain any leading zeroes.

输入格式

The first line contains positive integer aa in the decimal record. It is guaranteed that the record of number aa contains digits: 1, 6, 8, 9. Number aa doesn't contain any leading zeroes. The decimal representation of number aa contains at least 44 and at most 10610^{6} characters.

输出格式

Print a number in the decimal notation without leading zeroes — the result of the permutation.

If it is impossible to rearrange the digits of the number aa in the required manner, print 0.

输入输出样例

  • 输入#1

    1689
    

    输出#1

    1869
    
  • 输入#2

    18906
    

    输出#2

    18690
    
首页