結果

問題 No.182 新規性の虜
ユーザー concon
提出日時 2019-06-17 21:48:40
言語 Fortran
(gFortran 13.2.0)
結果
TLE  
実行時間 -
コード長 464 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 32,452 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-11-28 23:48:32
合計ジャッジ時間 67,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
11,552 KB
testcase_01 AC 1 ms
13,632 KB
testcase_02 AC 1 ms
11,424 KB
testcase_03 AC 1 ms
11,300 KB
testcase_04 AC 1 ms
11,432 KB
testcase_05 AC 1 ms
12,068 KB
testcase_06 AC 1 ms
11,556 KB
testcase_07 AC 1 ms
11,556 KB
testcase_08 AC 3,602 ms
6,816 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 4,924 ms
6,816 KB
testcase_12 AC 869 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 TLE -
testcase_19 AC 3,765 ms
6,816 KB
testcase_20 AC 1,361 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 2,303 ms
6,816 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 161 ms
6,820 KB
testcase_27 AC 1 ms
6,820 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

implicit none
integer(8) i,N,j,d
integer(8),allocatable :: A(:)
integer(8),allocatable :: B(:)
integer(8),allocatable :: C(:)
read(*,*) N
allocate (A(1:N))
allocate (B(1:N))
allocate (C(1:N))
A=0
B=0
C=0
d=0
read(*,*) (A(i),i=1,N)
do i=1,N
    C(i)=maxval(A)
    A(maxloc(A))=0
end do
do i=1,N-1
    if (C(i)==C(i+1)) then
        B(i)=B(i)-1
        B(i+1)=B(i+1)-1
    end if
end do
do i=1,N
    if (B(i)==0) then
        d=d+1
    end if
end do
write(*,*) d
end
0