結果
問題 | No.1616 Joke |
ユーザー |
|
提出日時 | 2022-09-24 14:30:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 386 bytes |
コンパイル時間 | 1,695 ms |
コンパイル使用メモリ | 164,352 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 05:56:56 |
合計ジャッジ時間 | 2,340 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define all(a) begin(a), end(a) #define sz(x) (int)((x).size()) #ifdef LOCAL #include "debug.hpp" #else #define debug(...) 42 #endif void solve() { int n; cin >> n; cout << n << '\n'; } int main() { cin.tie(nullptr)->sync_with_stdio(false); int T = 1; // cin >> T; while (T--) solve(); return 0; }