結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー | hiro1729 |
提出日時 | 2023-07-26 08:48:22 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,991 bytes |
コンパイル時間 | 5,285 ms |
コンパイル使用メモリ | 309,724 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 22:39:44 |
合計ジャッジ時間 | 7,210 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 5 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,816 KB |
testcase_03 | AC | 8 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 6 ms
6,816 KB |
testcase_10 | AC | 96 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i,n) for(int i=0;i<n;i++) #define reps(i,s,e) for(int i=s;i<e;i++) #define rvrep(i,n) for(int i=n-1;i>=0;i--) #define repv(i,v) for(auto i:v) #define gcu getchar_unlocked #define pcu putc_unlocked #define all(x) x.begin(),x.end() #define endln() pcu('\n',stdout) #define space() pcu(' ',stdout) template<typename T>inline bool chmax(T &a,T b){return((a<b)?(a=b,true):(false));} template<typename T>inline bool chmin(T &a,T b){return((a>b)?(a=b,true):(false));} using namespace std; using namespace atcoder; using ll=long long; using vi=vector<int>;using vvi=vector<vi>;using vvvi=vector<vvi>; using vl=vector<ll>;using vvl=vector<vl>;using vvvl=vector<vvl>; using pii=pair<int,int>;using vpii=vector<pii>;using pll=pair<ll,ll>;using vpll=vector<pll>;using pli=pair<ll,int>;using pil=pair<int,ll>; using mi=map<int,int>;using ms=map<string,int>;using mc=map<char,int>;using ml=map<ll,int>; using si=set<int>;using sc=set<char>;using ss=set<string>;using sl=set<ll>; using pi=pair<int,int>;using pl=pair<ll,ll>; using mint=modint998244353; using mint1=modint1000000007; // input int iin(){int r=0,s=1;int c=gcu();while(isspace(c))c=gcu();if(c=='-'){s=-1;c=gcu();}for(;!isspace(c);c=gcu())r=r*10+(c-'0');ungetc(c,stdin);return s*r;} ll llin(){ll r=0;int s=1;int c=gcu();while(isspace(c))c=gcu();if(c=='-'){s=-1;c=gcu();}for(;!isspace(c);c=gcu())r=r*10+(c-'0');ungetc(c,stdin);return s*r;} string input(){string r="";int c=gcu();while(isspace(c))c=gcu();for(;!isspace(c);c=gcu())r+=c;ungetc(c,stdin);return r;} // output template<typename T>void iout(T n){if(n<0){pcu('-',stdout);n=-n;}if(n<10){pcu('0'+n,stdout);return;}int i;char b[21];b[20]=0;for(i=20;n>0;b[--i]='0'+n%10,n/=10);fputs(b+i,stdout);} void print(string s){for(char i:s)pcu(i,stdout);} int main() { int n = iin(); for (int i = 1; i <= n / 3; i++) { for (int j = i; j <= (n - i) / 2; j++) { iout(i); space(); iout(j); space(); iout(n - i - j); endln(); } } }