結果
| 問題 | No.8020 サンシャイン◯崎 |
| コンテスト | |
| ユーザー |
jj
|
| 提出日時 | 2017-03-31 22:57:43 |
| 言語 | Fortran (gFortran 15.2.0) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 245 bytes |
| 記録 | |
| コンパイル時間 | 1,285 ms |
| コンパイル使用メモリ | 36,608 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-29 14:01:00 |
| 合計ジャッジ時間 | 2,389 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 20 |
コンパイルメッセージ
Main.f90:11:15:
11 | print '(i0,4(1xi0))',ic(89),ic(69),ic(65),ic(72),ic(33)
| 1
Warning: Legacy Extension: Missing comma in FORMAT string at (1)
ソースコード
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