結果

問題 No.1183 コイン遊び
ユーザー jj1gujjj1guj
提出日時 2020-08-22 13:07:43
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 18,552 KB
最終ジャッジ日時 2024-10-15 07:14:39
合計ジャッジ時間 9,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 17 ms
5,248 KB
testcase_12 AC 154 ms
12,524 KB
testcase_13 AC 137 ms
11,488 KB
testcase_14 AC 228 ms
17,316 KB
testcase_15 AC 245 ms
18,432 KB
testcase_16 AC 244 ms
18,432 KB
testcase_17 AC 244 ms
18,304 KB
testcase_18 AC 245 ms
18,304 KB
testcase_19 AC 245 ms
18,432 KB
testcase_20 AC 244 ms
18,424 KB
testcase_21 AC 238 ms
18,400 KB
testcase_22 AC 238 ms
18,336 KB
testcase_23 AC 238 ms
18,304 KB
testcase_24 AC 242 ms
18,400 KB
testcase_25 AC 244 ms
18,336 KB
testcase_26 AC 243 ms
18,304 KB
testcase_27 AC 250 ms
18,304 KB
testcase_28 AC 245 ms
18,552 KB
testcase_29 AC 240 ms
18,304 KB
testcase_30 AC 243 ms
18,432 KB
testcase_31 AC 245 ms
18,304 KB
testcase_32 AC 243 ms
18,304 KB
testcase_33 AC 246 ms
18,432 KB
testcase_34 AC 243 ms
18,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    implicit none
    integer(8)::N,flg,i,ans=0
    integer(8),allocatable::A(:),B(:)
    read*,N
    allocate(A(N))
    allocate(B(N))
    read*,A,B

    flg=0
    do i=1,N
        if(A(i)/=B(i))then
            if(flg==0)then
                flg=1
                ans=ans+1
            end if
        else
            flg=0
        end if
    end do

    print'(i0)',ans
end program main
0