結果
| 問題 |
No.8020 サンシャイン◯崎
|
| コンテスト | |
| ユーザー |
jj
|
| 提出日時 | 2017-03-31 22:57:43 |
| 言語 | Fortran (gFortran 14.2.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 245 bytes |
| コンパイル時間 | 674 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-23 14:01:47 |
| 合計ジャッジ時間 | 1,550 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
program main
character*100000::S
integer::ic(89)
integer::i,c
data ic/89*0/
read *,S
do i=1,LEN_TRIM(S)
c=ICHAR(S(i:i))
ic(c) = ic(c) + 1
end do
print '(i0,4(1xi0))',ic(89),ic(69),ic(65),ic(72),ic(33)
end program main
jj