結果
| 問題 |
No.1472 作為の和
|
| コンテスト | |
| ユーザー |
tkmst201
|
| 提出日時 | 2021-06-13 09:47:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 1,174 bytes |
| コンパイル時間 | 3,721 ms |
| コンパイル使用メモリ | 190,424 KB |
| 最終ジャッジ日時 | 2025-01-22 07:56:45 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#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
*/
tkmst201