Submission #731991
Source Code Expand
#include <iostream>
using namespace std;
int main(void)
{
int a, b;
cin >> a >> b;
int *c,*d,*e;
c = new int[b];
d = new int[b];
e = new int[b];
for (int i = 0; i < b ; i++)
{
cin >> c[i] >> d[i] >> e[i];
}
int *array;
array = new int[a];
for (int j =0 ; j <b ; j++)
{
for (int k = c[j] - 1; k < d[j]; k++)
{
array[k] = e[j];
}
}
for (int m = 0; m < a; m++)
{
cout << array[m] << endl;
}
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | B - 編集 |
| User | kensyu |
| Language | C++14 (Clang 3.8.0) |
| Score | 100 |
| Code Size | 485 Byte |
| Status | AC |
| Exec Time | 6 ms |
| Memory | 256 KiB |
Judge Result
| Set Name | sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| sample | sample01.txt, sample02.txt |
| All | 00.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, sample01.txt, sample02.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00.txt | AC | 4 ms | 256 KiB |
| 01.txt | AC | 4 ms | 256 KiB |
| 02.txt | AC | 4 ms | 256 KiB |
| 03.txt | AC | 4 ms | 256 KiB |
| 04.txt | AC | 4 ms | 256 KiB |
| 05.txt | AC | 5 ms | 256 KiB |
| 06.txt | AC | 4 ms | 256 KiB |
| 07.txt | AC | 4 ms | 256 KiB |
| 08.txt | AC | 5 ms | 256 KiB |
| 09.txt | AC | 4 ms | 256 KiB |
| 10.txt | AC | 5 ms | 256 KiB |
| 11.txt | AC | 5 ms | 256 KiB |
| 12.txt | AC | 5 ms | 256 KiB |
| 13.txt | AC | 5 ms | 256 KiB |
| 14.txt | AC | 5 ms | 256 KiB |
| 15.txt | AC | 5 ms | 256 KiB |
| 16.txt | AC | 5 ms | 256 KiB |
| 17.txt | AC | 5 ms | 256 KiB |
| 18.txt | AC | 6 ms | 256 KiB |
| 19.txt | AC | 6 ms | 256 KiB |
| sample01.txt | AC | 5 ms | 256 KiB |
| sample02.txt | AC | 5 ms | 256 KiB |