結果

問題 No.395 永遠の17歳
ユーザー prog470
提出日時 2016-09-29 17:14:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 453 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 89,468 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 02:22:22
合計ジャッジ時間 1,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <algorithm>
#include <sstream>
#include <iostream>
#include <string>
#include <cstdio>
#include <cmath>

using namespace std;

int main() {

	int A;
	cin >> A;

	int x = 8;
	while (1) {
		if (A <= 8 || x==100) break;
		int t = A;
		if (t / x * 10 + t%x == 17) {
			cout << x << endl;
			return 0;
		}
		x++;
	}

	cout << -1 << endl;

	return 0;
}
0