結果
| 問題 |
No.244 ★1のグラフの問題
|
| コンテスト | |
| ユーザー |
kichirb3
|
| 提出日時 | 2018-02-27 22:29:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 277 bytes |
| コンパイル時間 | 502 ms |
| コンパイル使用メモリ | 62,208 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-30 11:56:43 |
| 合計ジャッジ時間 | 1,068 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
// No.244 ★1のグラフの問題
// https://yukicoder.me/problems/no/244
//
#include <iostream>
using namespace std;
int solve(int N);
int main() {
int N;
cin >> N;
int ans = solve(N);
cout << ans << endl;
}
int solve(int N) {
return N - 1;
}
kichirb3