結果
問題 |
No.8062 A + B
|
ユーザー |
![]() |
提出日時 | 2020-04-01 22:09:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 598 ms |
コンパイル使用メモリ | 65,164 KB |
最終ジャッジ日時 | 2025-01-09 12:03:31 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 5 RE * 3 |
ソースコード
#include <iostream> #include <string> #include <cassert> using namespace std; string a,b; int main(){ cin >> a >> b; int i; for(i=0;i<a.size();i++){ if(a[i]!='0' && a[i]!='-' && a[i]!='1'){ assert(false); } } }