結果

問題 No.938 賢人を探せ
ユーザー さとみんさとみん
提出日時 2019-12-30 11:08:07
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 11:24:23
合計ジャッジ時間 9,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 623 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 431 ms
5,376 KB
testcase_09 AC 479 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 626 ms
5,376 KB
testcase_12 AC 415 ms
5,376 KB
testcase_13 AC 420 ms
5,376 KB
testcase_14 AC 425 ms
5,376 KB
testcase_15 AC 397 ms
5,376 KB
testcase_16 AC 411 ms
5,376 KB
testcase_17 AC 407 ms
5,376 KB
testcase_18 AC 431 ms
5,376 KB
testcase_19 AC 388 ms
5,376 KB
testcase_20 AC 387 ms
5,376 KB
testcase_21 AC 390 ms
5,376 KB
testcase_22 AC 605 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    implicit none
    
    integer(8) :: n
    integer(8) :: i
    
    character(20), allocatable :: cheaters(:)
    character(20), allocatable :: students(:)
    
    read *, n
    
    allocate(cheaters(n))
    allocate(students(n))
    
    do i = 1, n
        read *, cheaters(i), students(i)
    end do
    
    do i = 1, n
        if (count(cheaters == students(i)) == 0 .and. count(students(: i-1) == students(i)) == 0) print *, students(i)
    end do
end program main
0