Submission #73076518
Source Code Expand
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
string s;
cin >> s;
if (s[0] == s[1] && s[1] == s[2]) {
cout << "Yes";
} else {
cout << "No";
}
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - Repdigit |
| User | Qr_sake777 |
| Language | C++23 (GCC 15.2.0) |
| Score | 100 |
| Code Size | 271 Byte |
| Status | AC |
| Exec Time | 1 ms |
| Memory | 3688 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 0_sample_1.txt, 0_sample_2.txt, 0_sample_3.txt |
| All | 0_sample_1.txt, 0_sample_2.txt, 0_sample_3.txt, 1_1.txt, 2_1.txt, 2_2.txt, 2_3.txt, 2_4.txt, 3_1.txt, 3_2.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 0_sample_1.txt | AC | 1 ms | 3524 KiB |
| 0_sample_2.txt | AC | 1 ms | 3564 KiB |
| 0_sample_3.txt | AC | 1 ms | 3636 KiB |
| 1_1.txt | AC | 1 ms | 3576 KiB |
| 2_1.txt | AC | 1 ms | 3668 KiB |
| 2_2.txt | AC | 1 ms | 3628 KiB |
| 2_3.txt | AC | 1 ms | 3688 KiB |
| 2_4.txt | AC | 1 ms | 3564 KiB |
| 3_1.txt | AC | 1 ms | 3524 KiB |
| 3_2.txt | AC | 1 ms | 3620 KiB |