結果

問題 No.3089 Base M Numbers, But Only 0~9
ユーザー zawakasu
提出日時 2025-04-04 22:23:27
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 1,200 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2025-04-04 22:23:45
合計ジャッジ時間 1,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cassert>
int main() {
    long long M;
    std::string N;
    std::cin >> M >> N;
    assert(10 <= M);
}
0