結果
| 問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
| コンテスト | |
| ユーザー |
teketeke5000
|
| 提出日時 | 2017-09-05 10:06:48 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 260 bytes |
| コンパイル時間 | 1,826 ms |
| コンパイル使用メモリ | 159,704 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-06 22:14:39 |
| 合計ジャッジ時間 | 2,979 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 RE * 1 |
| other | AC * 3 WA * 7 RE * 3 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(void) {
string a,b;
cin >> a;
cin >> b;
if (a == to_string(stoi(a)) && b == to_string(stoi(b))) cout << "YES" << endl;
else cout << "NG" << endl;
return 0;
}
teketeke5000