結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー 川端太作
提出日時 2022-12-22 13:53:43
言語 Fortran
(gFortran 14.2.0)
結果
RE  
実行時間 -
コード長 129 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 03:20:21
合計ジャッジ時間 1,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 RE * 1
other AC * 9 RE * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

program t1
    implicit none
    integer::n,a(500000)
    read(*,*)n
    read(*,*)a(1:n)
    write(*,*)sum(a(1:n))
end program t1
0