Result

AC

Duration

830ms

Code [DL]

for i in range(100):
 x=int(input())
 y=0
 for j in range(1,10):
  if x%j==0 and x//j<10:
   y = 1
 print(y)

stdin

87
19
20
90
36
93
25
60
78
30
26
55
40
81
75
15
23
84
16
35
88
69
38
37
61
79
31
46
97
14
63
85
56
28
64
48
22
99
80
12
59
24
94
41
42
10
33
27
32
52
13
44
95
67
86
42
70
68
98
21
34
11
83
25
58
50
91
45
85
65
39
61
53
55
43
96
62
54
51
76
71
47
41
57
72
49
66
43
73
18
89
99
57
92
82
29
74
96
17
77

stdout

0
0
1
0
1
0
1
0
0
1
0
0
1
1
0
1
0
0
1
1
0
0
0
0
0
0
0
0
0
1
1
0
1
1
1
1
0
0
0
1
0
1
0
0
1
1
0
1
1
0
0
0
0
0
0
1
0
0
0
1
0
0
0
1
0
0
0
1
0
0
0
0
0
0
0
0
0
1
0
0
0
0
0
0
1
1
0
0
0
1
0
0
0
0
0
0
0
0
0
0

stderr

strace

10    execve("/bin/sh", ["/bin/sh", "/root/script", "/volume/CODE"], 0x7fffb53ed3d0 /* 7 vars */) = 0
12    execve("/usr/bin/python3", ["/usr/bin/python3", "/volume/CODE"], 0x561c90c72d50 /* 7 vars */ <unfinished ...>
11    execve("/bin/cat", ["cat", "-"], 0x561c90c72d38 /* 7 vars */ <unfinished ...>
12    <... execve resumed> )            = 0
11    <... execve resumed> )            = 0
11    +++ exited with 0 +++
10    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=11, si_uid=0, si_status=0, si_utime=0, si_stime=0} ---
12    +++ exited with 0 +++
10    --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=12, si_uid=0, si_status=0, si_utime=1, si_stime=0} ---
10    +++ exited with 0 +++