結果

問題 No.1472 作為の和
ユーザー tkmst201tkmst201
提出日時 2021-06-13 09:47:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,174 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 195,740 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-23 11:43:02
合計ジャッジ時間 2,774 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	// int m = 3141;
	// auto f = [](int i) {
	// 	int res = 0;
	// 	while (i > 0) res += i % 10, i /= 10;
	// 	return res;
	// };
	// int ans = 0, ansc = 0;
	// FOR(i, 1, m + 1) FOR(j, i, m + 1) {
	// 	printf("%2d %2d = %3d (%6d)\n", i, j, i * j, f(i * j));
	// 	if (chmax(ans, f(i * j))) ansc = 1;
	// 	else if (ans == f(i * j)) ++ansc;
	// }
	// cout << "ans = " << ans << endl;
	// cout << "ansc = " << ansc << endl;
	int N;
	cin >> N;
	if (N == 0) puts("9 1");
	else printf("%d 1\n", 8 + 9 * (2 * N));
}

/*
29 31 899
299 301 89999
2999 3001 8999999
*/
0