結果

問題 No.280 歯車の問題(1)
コンテスト
ユーザー et
提出日時 2015-09-28 12:22:02
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 328 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 360 ms
コンパイル使用メモリ 87,012 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-18 12:47:23
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <string>
#include <vector>
#include <cstring>
#include <climits>
#include <algorithm>
#include <map>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int> z(N);
    for (int i=0; i<N; ++i) {
        cin >> z[i];
    }
    cout << z[0] << "/" << z[N-1] << endl;
    return 0;
}
0