結果
問題 | No.341 沈黙の期間 |
ユーザー | jj |
提出日時 | 2016-07-28 22:24:20 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 31,488 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 18:15:10 |
合計ジャッジ時間 | 866 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,816 KB |
ソースコード
character*3,parameter::c='…' character*300::S integer::i,total=0,prev=0,maxlen read *,S do i=1, LEN_TRIM(S) if(S(i:i+2).eq.c) then if(prev+3.eq.i.or.prev.eq.0) then total=total+1 prev = i maxlen=MAX(maxlen, total) end if end if end do print '(i0)', maxlen end program