結果

問題 No.2016 Countdown Divisors
ユーザー erbowlerbowl
提出日時 2022-08-07 15:43:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 209,360 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-09-17 09:06:09
合計ジャッジ時間 6,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 177 ms
6,940 KB
testcase_02 AC 178 ms
6,940 KB
testcase_03 AC 223 ms
9,216 KB
testcase_04 AC 188 ms
8,448 KB
testcase_05 AC 179 ms
8,192 KB
testcase_06 AC 60 ms
6,940 KB
testcase_07 AC 62 ms
6,940 KB
testcase_08 AC 204 ms
9,600 KB
testcase_09 AC 207 ms
9,600 KB
testcase_10 AC 202 ms
9,856 KB
testcase_11 AC 204 ms
9,728 KB
testcase_12 AC 207 ms
9,728 KB
testcase_13 AC 152 ms
6,940 KB
testcase_14 AC 142 ms
6,940 KB
testcase_15 AC 144 ms
6,940 KB
testcase_16 AC 193 ms
6,940 KB
testcase_17 AC 179 ms
6,940 KB
testcase_18 AC 182 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n;
    std::cin >> n;
    map<ll,bool> m;
    m[1]=true;
    m[3]=true;
    m[4]=true;
    m[5]=true;
    m[7]=true;
    m[8]=true;
    for (int i = 0; i < n; i++) {
        ll t;
        std::cin >> t;
        if(m[t]){
            std::cout << 1 << std::endl;
        }else{
            std::cout << 2 << std::endl;
        }
    }
}
0