結果
| 問題 |
No.2863 Base 10 Subsets 1
|
| コンテスト | |
| ユーザー |
SnowBeenDiding
|
| 提出日時 | 2024-08-30 21:24:05 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 377 bytes |
| コンパイル時間 | 4,911 ms |
| コンパイル使用メモリ | 307,568 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-08-30 21:24:11 |
| 合計ジャッジ時間 | 5,577 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 WA * 4 |
ソースコード
#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;
typedef long long ll;
int main() {
int a, b;
cin >> a >> b;
rep(i, 0, 100) {
if (a % 10 < b % 10) {
cout << "No" << endl;
return 0;
}
}
cout << "Yes" << endl;
}
SnowBeenDiding