結果

問題 No.2607 Add One Digit
ユーザー HarryHosono
提出日時 2024-04-19 21:16:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 191,176 KB
最終ジャッジ日時 2025-02-21 03:27:58
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
*   auther:  deviceF
*   created: 19.04.2024 07:15:04
**/
#include<bits/stdc++.h>

using namespace std;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  return 0;
}
0