結果

問題 No.1108 移調
ユーザー さとみん
提出日時 2020-09-27 19:40:05
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 12:53:10
合計ジャッジ時間 1,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
    implicit none
    integer :: n, h
    integer, allocatable :: t(:)
    
    read *, n, h
    allocate (t(n))
    read *, t
    
    print '(*(I0, " "))', t+h
end program main
0