結果

問題 No.586 ダブルブッキング
ユーザー BQZetBQZet
提出日時 2017-11-23 00:12:55
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 32,256 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 21:11:36
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program DoubleBooking

integer,allocatable,dimension(:)::R
integer::P1,P2,N,k,sum,X

sum=0

write(*,*)'Please enter P1,P2'
read *,P1,P2

write(*,*)'Please enter N'
read *,N
allocate(R(N))

write(*,*)'Please enter R(N)'
read *,R(:)

do X=1,999
 if(count(X==R(:))<2) cycle
 sum=sum+count(X==R(:))-1
end do

write(*,*)sum*(P1+P2)
end program DoubleBooking
0