結果
問題 | No.244 ★1のグラフの問題 |
ユーザー | pekempey |
提出日時 | 2015-07-17 22:20:37 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 301 bytes |
コンパイル時間 | 1,095 ms |
コンパイル使用メモリ | 157,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 11:44:06 |
合計ジャッジ時間 | 1,557 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; int main() { int n; cin >> n; cout << n - 1 << endl; return 0; }