結果
問題 | No.3051 cracked |
ユーザー | nebukuro09 |
提出日時 | 2019-04-01 23:36:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,361 bytes |
コンパイル時間 | 1,686 ms |
コンパイル使用メモリ | 167,480 KB |
実行使用メモリ | 25,880 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-16 16:59:24 |
合計ジャッジ時間 | 6,434 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; void ans(int p,char a,char b) { printf("%d\n",p); printf("\"%c\"\n",a); printf("\"%c\"\n",b); } int main() { int p = 0; string line1,line2,line3; for (int j=0;j<2;++j) { getline(cin,line1); getline(cin,line2); getline(cin,line3); int n = line1.size(); if (line2[0] != '/') { ans(p + n,'/',line2[0]); return 0; } if (line2[1] != '/') { ans(p + n + 1,'/',line2[1]); return 0; } if (line3[0] != '/') { ans(p + n + 2 + n,'/',line3[0]); return 0; } if (line3[1] != '/') { ans(p + n + 2 + n + 1,'/',line3[1]); return 0; } for (int i = 0; i < (int)line1.size(); ++i) { if (line1[i] == line2[i+2] && line1[i] != line3[i+2]) { ans(p + n + 2 + n + 2 + i,line1[i],line3[i+2]); return 0; } else if (line1[i] == line3[i+2] && line1[i] != line2[i+2]) { ans(p + n + 2 + i,line1[i],line2[i+2]); return 0; } else if (line2[i+2] == line3[i+2] && line1[i] != line2[i+2]) { ans(p + i,line2[i+2],line1[i]); return 0; } } p += n + 2 + n + 2 + n; } }