結果

問題 No.964 2020
ユーザー jj1gujjj1guj
提出日時 2020-06-05 18:12:39
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 2 ms / 2,020 ms
コード長 236 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 26,024 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-22 09:08:25
合計ジャッジ時間 1,792 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program y964
    implicit none
    integer(8)::N,i,j,c=0
    character(100000)::S
    read*,N
    do i=0,N-1
        do j=1,N
            S(c+j:c+j)=char(9-i+48)
        end do
        c=c+N
    end do
    print*,S(1:c)
end program y964
0