結果

問題 No.353 ヘイトプラス
ユーザー kazuppakazuppa
提出日時 2024-09-08 22:02:14
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 179,368 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 22:02:19
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <atcoder/all>
#pragma GCC target ("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int a,b;cin>>a>>b;
  int c=1000000000,d=1000000000,e=2000000000;
  while(a!=c)c--,e--;
  while(b!=d)d--,e--;
  cout<<e<<endl;
}
0