結果
問題 | No.35 タイパー高橋 |
ユーザー | jj |
提出日時 | 2016-07-30 16:39:13 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 32,256 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 21:19:10 |
合計ジャッジ時間 | 809 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | WA | - |
ソースコード
TYPE game integer::time character::str*100 end type game type(game),allocatable::games(:) integer::miss = 0,total = 0 read *, N allocate(games(N)) read *, games do i=1,N total = total + LEN_TRIM(games(i)%str) miss = miss + (LEN_TRIM(games(i)%str)-games(i)%time*12/1000) end do print '(i0," ",i0)', total-miss, miss end program