結果
問題 | No.2246 1333-like Number |
ユーザー | kcvlex |
提出日時 | 2023-03-17 21:27:14 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 478 bytes |
コンパイル時間 | 2,537 ms |
コンパイル使用メモリ | 157,448 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-18 10:13:30 |
合計ジャッジ時間 | 3,278 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <iostream> #include <vector> #include <atcoder/all> #define ALL(V) std::begin(V), std::end(V) int main() { int N; std::cin >> N; int len = (N - 1) / 36 + 1; int rem = (N - 1) % 36; int a = 1, b = 2; for (int i = 1; i <= rem; i++) { if (b == 9) { a++; b = a + 1; } else { b++; } } std::cout << a; while (len--) std::cout << b; std::cout << std::endl; return 0; }