結果
問題 | No.395 永遠の17歳 |
ユーザー | unyaunya |
提出日時 | 2018-02-27 16:37:35 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 705 ms |
コンパイル使用メモリ | 74,720 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-29 01:03:23 |
合計ジャッジ時間 | 1,316 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include <iostream> #include <math.h> #include <vector> #include <iomanip> using namespace std; #define P(x) cout << x << endl #define rep(i,n) for(int i=0;i<n;i++) int main(){ int a; cin>>a; int x = a-7; if(x>0 && x>7) P(x); else P(-1); }