-
Notifications
You must be signed in to change notification settings - Fork 0
/
codechef112.java
81 lines (76 loc) · 1.38 KB
/
codechef112.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//import java.util.Scanner;
//
//public class codechef112 {
//
// public static void main(String[] args) {
// int n;
// int temp;
// int a[] =new int [2];
// Scanner in = new Scanner(System.in);
// n=in.nextInt();
//
// for(int t =1;t<=n;t++)
// {
// for(int i=0;i<=2;i++)
// {
// a[i]=in.nextInt();
// if(a[i]<a[i+1])
// {
// temp=a[i];
// a[i]=a[i+1];
// a[i+1]=temp;
//
// }
//
// }
// for (int j=0;j<=2;j++)
// {
// System.out.println(a[j]);
//
// }
//
//
//
//
//
//
//
// }
// }
//
//
//
//
//}
//
//
//
//
//
//
/* package codechef; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
public class codechef112
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
for(int i=0;i<t;i++){
int p = sc.nextInt();
int ans=0,item=2048;
while(p>0)
{
ans=ans+p/item;
// System.out.println(ans);
p=p%item;
System.out.println(p);
item=item/2;
}
}
}
}