結果
問題 | No.938 賢人を探せ |
ユーザー | さとみん |
提出日時 | 2019-12-30 11:08:07 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
AC
|
実行時間 | 682 ms / 2,000 ms |
コード長 | 490 bytes |
コンパイル時間 | 1,898 ms |
コンパイル使用メモリ | 32,384 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 22:44:28 |
合計ジャッジ時間 | 10,218 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 682 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 474 ms
5,248 KB |
testcase_09 | AC | 514 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 678 ms
5,248 KB |
testcase_12 | AC | 438 ms
5,248 KB |
testcase_13 | AC | 436 ms
5,248 KB |
testcase_14 | AC | 430 ms
5,248 KB |
testcase_15 | AC | 434 ms
5,248 KB |
testcase_16 | AC | 431 ms
5,248 KB |
testcase_17 | AC | 433 ms
5,248 KB |
testcase_18 | AC | 436 ms
5,248 KB |
testcase_19 | AC | 431 ms
5,248 KB |
testcase_20 | AC | 427 ms
5,248 KB |
testcase_21 | AC | 427 ms
5,248 KB |
testcase_22 | AC | 679 ms
5,248 KB |
ソースコード
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