結果
| 問題 |
No.395 永遠の17歳
|
| コンテスト | |
| ユーザー |
wing3196
|
| 提出日時 | 2016-07-15 22:25:07 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 201 bytes |
| コンパイル時間 | 1,279 ms |
| コンパイル使用メモリ | 156,288 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-15 04:10:58 |
| 合計ジャッジ時間 | 1,903 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
int N;
int Solve()
{
if (N <= 7) return -1;
return N - 7;
}
signed main()
{
cin >> N;
printf("%lld\n", Solve());
return 0;
}
wing3196