結果

問題 No.1986 Yummy
ユーザー take000take000
提出日時 2023-03-05 04:16:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 198,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 01:29:29
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < n; ++i)
typedef long long ll;
using namespace std;

int main() {
    cin.tie(0)->sync_with_stdio(0);

    int N;
    cin >> N;

    if (N % 2 == 1)
        cout << 1;
    else
        cout << N / 2;
    cout << "\n";

    return 0;
}
0