結果
問題 | No.1052 電子機器X |
ユーザー | umezo |
提出日時 | 2020-05-15 22:02:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 2,879 ms |
コンパイル使用メモリ | 233,800 KB |
実行使用メモリ | 218,400 KB |
最終ジャッジ日時 | 2024-09-19 10:31:45 |
合計ジャッジ時間 | 5,369 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#define _GLIBCXX_DEBUG #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } #include <bits/stdc++.h> using namespace std; int main(){ ll n,k; cin>>n>>k; set<ll> s; if(k%2==0){ for(ll i=0;i<=k;i+=2) s.insert(i%n); for(ll i=0;i<=k;i+=2) s.insert(n-(i%n)); } else{ for(ll i=1;i<=k;i+=2) s.insert(i%n); for(ll i=1;i<=k;i+=2) s.insert(n-(i%n)); } cout<<s.size()<<endl; return 0; }