結果
| 問題 |
No.494 yukicoder
|
| コンテスト | |
| ユーザー |
mannshi222
|
| 提出日時 | 2022-04-27 22:05:39 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 203 bytes |
| コンパイル時間 | 673 ms |
| コンパイル使用メモリ | 66,728 KB |
| 最終ジャッジ日時 | 2025-01-28 22:04:46 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <string>
#include <cstring>
using namespace std;
int main()
{
char S[10];
char A[10] = "yukicoder";
cin >> S;
cout << A[ strchr( S, '?' ) - S ] << endl;
return 0;
}
mannshi222