結果
| 問題 | No.805 UMG |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2019-11-26 21:56:34 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 221 bytes |
| 記録 | |
| コンパイル時間 | 559 ms |
| コンパイル使用メモリ | 88,672 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-13 01:48:07 |
| 合計ジャッジ時間 | 1,453 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 25 |
ソースコード
#include <iostream>
#include <algorithm>
#include <math.h>
using namespace std;
int main(){
int n;
cin >> n;
char a[n];
for ( int i = 0; i < n; i++ ) cin >> a[n];
cout << a[1] << endl;
return 0;
}
Konton7