CF1560A.Dislike of Threes

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Polycarp doesn't like integers that are divisible by 33 or end with the digit 33 in their decimal representation. Integers that meet both conditions are disliked by Polycarp, too.

Polycarp starts to write out the positive (greater than 00 ) integers which he likes: 1,2,4,5,7,8,10,11,14,16,1, 2, 4, 5, 7, 8, 10, 11, 14, 16, \dots . Output the kk -th element of this sequence (the elements are numbered from 11 ).

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Then tt test cases follow.

Each test case consists of one line containing one integer kk ( 1k10001 \le k \le 1000 ).

输出格式

For each test case, output in a separate line one integer xx — the kk -th element of the sequence that was written out by Polycarp.

输入输出样例

  • 输入#1

    10
    1
    2
    3
    4
    5
    6
    7
    8
    9
    1000

    输出#1

    1
    2
    4
    5
    7
    8
    10
    11
    14
    1666
首页