結果
問題 | No.3079 アルベド |
ユーザー | sten_san |
提出日時 | 2021-04-01 21:33:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,241 bytes |
コンパイル時間 | 2,138 ms |
コンパイル使用メモリ | 200,712 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 03:21:14 |
合計ジャッジ時間 | 3,445 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct iofast_t { iofast_t() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); } } iofast; struct uns_t {} uns; template <typename Element, typename Head, typename ...Args> auto vec(Element init, Head arg, Args ...args) { if constexpr (sizeof...(Args) == 0) return std::vector(arg, init); else return std::vector(arg, vec(init, args...)); } template <typename Element, typename Head, typename ...Args> auto vec(uns_t, Head arg, Args ...args) { return vec(Element(), arg, args...); } template <typename T, typename Compare = less<T>> T &chmin(T &l, T r, Compare &&f = less<T>()) { return l = min(l, r, f); } template <typename T, typename Compare = less<T>> T &chmax(T &l, T r, Compare &&f = less<T>()) { return l = max(l, r, f); } int main() { array<bool, 100000 + 1> sieve; fill(begin(sieve), end(sieve), true); sieve[0] = sieve[1] = false; for (int i = 2; i <= 100000 / i; ++i) { if (!sieve[i]) continue; for (int j = i * i; j <= 100000; j += i) { sieve[j] = false; } } int t; cin >> t; while (t--) { int n; cin >> n; cout << sieve[n] << endl; } }