結果
問題 | No.395 永遠の17歳 |
ユーザー | m1025o1184t |
提出日時 | 2019-11-26 16:55:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 354 bytes |
コンパイル時間 | 1,541 ms |
コンパイル使用メモリ | 165,648 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-11-06 22:51:07 |
合計ジャッジ時間 | 4,220 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,576 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin >> a; if(a <= 7){ cout << -1 << endl; return 0; } int ans; for(int i = 8;;++i){ if(a % i != 7) continue; if(i * 1 < a && i * 2 > a){ ans = i; break; } } cout << ans << endl; return 0; }