結果
問題 | No.632 穴埋め門松列 |
ユーザー | face4 |
提出日時 | 2018-04-22 14:28:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 574 bytes |
コンパイル時間 | 724 ms |
コンパイル使用メモリ | 66,552 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 05:38:16 |
合計ジャッジ時間 | 1,097 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> using namespace std; int main(){ int one[3], four[3]; char c; for(int i = 0; i < 3; i++){ cin >> c; if(c == '?'){ one[i] = 1; four[i] = 4; }else{ int x = (int)(c-'0'); one[i] = x; four[i] = x; } } // one check if((one[1]-one[0])*(one[1]-one[2]) > 0){ cout << "1"; } // four check if((four[1]-four[0])*(four[1]-four[2]) > 0){ cout << "4"; } cout << endl; return 0; }