結果
| 問題 | No.494 yukicoder |
| コンテスト | |
| ユーザー |
gotutiyan
|
| 提出日時 | 2017-09-29 00:00:00 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 423µs | |
| コード長 | 400 bytes |
| 記録 | |
| コンパイル時間 | 332 ms |
| コンパイル使用メモリ | 86,952 KB |
| 実行使用メモリ | 9,828 KB |
| 最終ジャッジ日時 | 2026-09-23 11:31:16 |
| 合計ジャッジ時間 | 1,827 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
int max(int a, int b) {
int x = (a > b) ? a : b;
return x;
}
int min(int a, int b) {
int x = (a < b) ? a : b;
return x;
}
int main() {
string s;
cin >> s;
string ss = "yukicoder";
for (int i = 0; i < 9; i++) {
if (s[i] != ss[i]) {
cout << ss[i] << endl;
break;
}
}
return 0;
}
gotutiyan