import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner (System.in); int k=sc.nextInt(); ArrayList<Integer>arr=new ArrayList<>(); while(k-->0){ int a=sc.nextInt(); int n=sc.nextInt(); if(a==1)arr.add(n); else{ if(arr.contains(n))System.out.println("True"); else System.out.println("False"); } } } }
0.0分
1 人评分
三角形 (C++代码)递推浏览:825 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:574 |
1017题解浏览:663 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
C二级辅导-等差数列 (C语言代码)浏览:806 |
输出九九乘法表 (C语言代码)浏览:1172 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:820 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:608 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:604 |
发工资咯 (C语言代码)浏览:815 |