CanonSharp/OpenSet/53_skip_spaces.pas
jackfiled 89ce313b77 feat: CanonSharp Benchmark. (#4)
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4
Co-authored-by: jackfiled <xcrenchangjun@outlook.com>
Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
2024-08-19 14:37:34 +08:00

23 lines
304 B
ObjectPascal

program main;
// ??? // ????
// ?????
{dfdafa}
var
i,j,sum,t: integer;
arr: array[0..99] of integer;
begin
t := 5;
i := 0;
sum := 0;
for j := 0 to t - 1 do
begin
i := i + 1;
arr[j] := i;
end;
for j := 0 to i - 1 do
begin
sum := sum + arr[j];
end;
write(sum mod 79);
end.