結果
問題 | No.632 穴埋め門松列 |
ユーザー | むうす |
提出日時 | 2023-01-15 14:45:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 912 bytes |
コンパイル時間 | 1,914 ms |
コンパイル使用メモリ | 165,008 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-28 07:03:12 |
合計ジャッジ時間 | 2,346 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define lo long long #define sr string #define ch char #define ve vector #define al(x) x.begin(),x.end() #define sort(x) sort(x.begin(),x.end()) #define reverse(x) reverse(x.begin(),x.end()) #define rep(i,a) for(lo i=0;i<a;i++) #define lep(i,a) for(lo i=0;i<=a;i++) #define rrep(i,a,b) for(lo i=a;i<b;i++) #define rrrep(i,a,b) for(lo i=a;i>=b;i--) #define wh while int main(){ ch a,b,c; cin>>a>>b>>c; if(a=='?'){ if(b>c){ cout<<1<<endl; } else{ cout<<4<<endl; } } else if(b=='?'){ b='1'; if(a>b && b<c){ cout<<1; } b='4'; if(a<b && b>c){ cout<<4; } cout<<endl; } else if(c=='?'){ if(a<b){ cout<<1<<endl; } else{ cout<<4<<endl; } } }