308700: CF1560A. Dislike of Threes

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Dislike of Threes

题意翻译

给定 $t$ ( $1 \le t \le 100$ ) 个整数 $k$ ( $1 \le k \le 1000$ ),对于每个 $k$,输出第 $k$ 个满足不被 $3$ 整除且末尾不是 $3$ 的整数。

题目描述

Polycarp doesn't like integers that are divisible by $ 3 $ or end with the digit $ 3 $ in their decimal representation. Integers that meet both conditions are disliked by Polycarp, too. Polycarp starts to write out the positive (greater than $ 0 $ ) integers which he likes: $ 1, 2, 4, 5, 7, 8, 10, 11, 14, 16, \dots $ . Output the $ k $ -th element of this sequence (the elements are numbered from $ 1 $ ).

输入输出格式

输入格式


The first line contains one integer $ t $ ( $ 1 \le t \le 100 $ ) — the number of test cases. Then $ t $ test cases follow. Each test case consists of one line containing one integer $ k $ ( $ 1 \le k \le 1000 $ ).

输出格式


For each test case, output in a separate line one integer $ x $ — the $ k $ -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

Input

题意翻译

给定 $t$ ( $1 \le t \le 100$ ) 个整数 $k$ ( $1 \le k \le 1000$ ),对于每个 $k$,输出第 $k$ 个满足不被 $3$ 整除且末尾不是 $3$ 的整数。

加入题单

算法标签: