結果

問題 No.544 Delete 7
ユーザー sora410_tsora410_t
提出日時 2017-11-03 09:34:29
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 58,976 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-22 15:18:38
合計ジャッジ時間 13,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,576 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 TLE -
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 10 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 10 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 10 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 23 ms
5,248 KB
testcase_34 AC 10 ms
5,248 KB
testcase_35 AC 46 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 111 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 TLE -
testcase_40 AC 701 ms
5,248 KB
testcase_41 AC 10 ms
5,248 KB
testcase_42 AC 10 ms
5,248 KB
testcase_43 AC 10 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 92 ms
5,248 KB
testcase_48 AC 26 ms
5,248 KB
testcase_49 AC 926 ms
5,248 KB
testcase_50 AC 113 ms
5,248 KB
testcase_51 AC 905 ms
8,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:29: warning: ‘b’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   23 |         cout << a << " " << b << endl;
      |                             ^
main.cpp:23:22: warning: ‘a’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   23 |         cout << a << " " << b << endl;
      |                      ^~~

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

bool have7(const int n) noexcept {
	int r = n;
	for (int i = 0; i < log10(n); ++i) {
		if (r % 10 == 7) { return true; }
		r = floor(r / 10);
	}
	return false;
} 

int main() {
	int n, a, b;
	cin >> n;
	for (int i = 1; i < n; ++i) {
		if (have7(i)) { continue; }
		if (have7(n-i)) { continue; }
		a = i; b = n - i;
		break;
	}
	cout << a << " " << b << endl;
}
0